====写入数据============create or replace procedure addWaterFallis directions clob; amount binary_integer; offset integer; first_d...
分类:
其他好文 时间:
2015-02-05 17:49:31
阅读次数:
112
我的OC学习阶段中 我的第一个字典创建/*NSDictionary *dic = [NSDictionary dictionaryWithObject:@"xiaochen" forKey:@"name"] ;NSLog(@"%@", dic);*/ 虽然说我不是专业学习软件编程的,但是我很喜欢编....
分类:
其他好文 时间:
2015-02-05 17:50:51
阅读次数:
122
代码: #include "stdafx.h"
#include "stdlib.h" char* getcharBuffer()
{ return "1919,3a3a";
} void changeto4(char * buffer)
{ while(*buffer) { if(*buffer ...
分类:
其他好文 时间:
2015-02-05 17:51:31
阅读次数:
179
setInterval会每隔指定的毫秒数后反复执行指定代码。setTimeout只会在指定的毫秒数后执行一次指定代码。setInterval的用法:// 创建(创建后即开始计时)var interval = window.setInterval(function(){ // 要执行的代码},1...
分类:
其他好文 时间:
2015-02-05 17:49:02
阅读次数:
141
opacity (filter: Alpha(Opacity=50) 或opacity:0.5)会使整个元素包括子元素透明,而RGBA仅仅是元素本身透明,子元素不透明。eg:.div {background: rgba(0,0,0,0.5);} IE下RGBA写法:.div { filter:p.....
分类:
其他好文 时间:
2015-02-05 17:47:47
阅读次数:
178
练习1.9以下是第一个加起两个正整数的方法,其中inc将参数加1,dec将参数减1。(define (+ a b) (if (= a 0) b (inc (+ (dec a) b))))用代换模型展示(+ 4 5)如下:(+ 4 5)(inc (+ 3 5))(inc (inc (+ 2 5)).....
分类:
其他好文 时间:
2015-02-05 17:48:48
阅读次数:
121
XML文件名 true http://127.0.01/Version.xml 程序代码XmlSerializer xmlSerializer = new XmlSerializer(typeof(configuration)); StreamWriter s...
分类:
其他好文 时间:
2015-02-05 17:49:36
阅读次数:
362
easyUI属性汇总属性分为CSS片段和JS片段。 CSS类定义:1、div easyui-window 生成一个window窗口样式。 属性如下: 1)modal:是否生成模态窗口。true[是] false[否] ...
分类:
其他好文 时间:
2015-02-05 17:48:27
阅读次数:
166
1035. Password (20)时间限制400 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, YueTo prepare for PAT, the judge sometimes has to generate random passwords ...
分类:
其他好文 时间:
2015-02-05 17:48:11
阅读次数:
190
1、概述泛型是Swift中最强大的特性之一,使用泛型可以写出灵活、可重用、干净、抽象的代码,并且避免代码重复。实际上在第一章中我们就接触到了泛型,Array 和 Dictionary 是泛型容器,可以存入任何类型。2. 泛型所要解决的问题 The Problem That Generics Solv...
分类:
其他好文 时间:
2015-02-05 17:48:13
阅读次数:
125
imageNamed:是UIImage的一个类方法,它在加载图像资源的流程中:a. 先去检测缓存中是否存在该图像,如果存在则直接返回。b. 如果缓存中不存在该图像,则会先加载到缓存中然后返回对象。所以这种流程造成了图片资源使用完成后不能即刻释放内存,如果图片资源过大会造成内存被大量占用而得不到释放。...
分类:
其他好文 时间:
2015-02-05 17:47:43
阅读次数:
102
准备锻炼背诵PI的小数,找到PI值:PI=3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446...
分类:
其他好文 时间:
2015-02-05 17:46:55
阅读次数:
140
Bootstrap:简洁、直观、强悍的前端开发框架,让web开发更迅速、简单。下载的bootstarp结构: bootstrap/ ├── css/ │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstra...
分类:
其他好文 时间:
2015-02-05 17:45:38
阅读次数:
229
虽然算法还没有理解透,但以及迫不及待地想要A道题了。非常裸的最大流,试试lrj的模板练练手。 1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 8 const int maxn ...
分类:
其他好文 时间:
2015-02-05 17:46:58
阅读次数:
109
数据层设计中,我们主要设计了数据对对外开放的 实体基类EntityBase,单元操作接口IUnitOfWork 和 数据仓储接口IRepository,下面我们来解说怎样来使用 EntityFramework 对这些数据访问需求进行实现。EntityFramework 的实现中,我们不仅要实现以上...
分类:
其他好文 时间:
2015-02-05 17:46:34
阅读次数:
487