Swift语言使用var定义变量,但和别的语言不同,Swift里不会自动给变量赋初始值,也就是说变量不会有默认值,所以要求使用变量之前必须要对其初始化。如果在使用变量之前不进行初始化就会报错:
1
2
3
4
5
var
stringValue : String
//error:
variable 'st...
分类:
其他好文 时间:
2014-06-11 00:44:59
阅读次数:
374
--master log 与relay
log的关系-------------------------------2014/06/09Just to clarify, there are three
sets of file/position coordinates in SHOW SLAVE ST...
分类:
其他好文 时间:
2014-06-10 08:31:57
阅读次数:
196
两种思路,第一种思路是通过对Bitmap进行操作,将Bitmap的像素值get到一个int[]数组里,因为在android里Bitmap通常是ARGB8888格式,所以最高位就是A通道的值,对齐进行改变后再新建一个Bitmap即可。第二种思路是通过设置canvas的paint的透明度,然后通过canvas.drawBitmap()来改变View的透明度。具体代码如下:第一种思路:public st...
分类:
移动开发 时间:
2014-06-10 08:17:03
阅读次数:
280
关联数组可以有两种操作:
插入一个关键字和对应的值
通过关键字查询与之对应的值
典型的应用有DNS查找。
接口
关联数组的接口如下:
public interface ST {
public Value get(Key key);
public void remove(Key key);
pub...
分类:
其他好文 时间:
2014-06-10 06:41:31
阅读次数:
215
Sort a linked list inO(nlogn) time using
constant space complexity.单向链表排序O(nlogn),Mergesort可以实现。 1 /** 2 * Definition for
singly-linked list. 3 * st.....
分类:
其他好文 时间:
2014-06-10 00:44:11
阅读次数:
329
PromiseEvent基于事件和promise的回调管理,类似于jquery的callbacks,但具有结果传递,优先级,事件参数,promise控制等功能接口方法var
events = st.promiseEvent(mode);events.add(name,function(e,arg,…...
Trigger在目标对象上加入触发器功能,目标对象的方法就会具有方法注入功能,注入的方式有before(前置执行),after(后置执行)和round(环绕),另外还有一个exception模式,因为异常处理的模块还没完成,暂时先空缺。接口方法
st.attachTrigger(target,...
发送页:1 2 3 0084 5 6 发送页后台CS代码:1 protected void
Button1_Click(object sender, EventArgs e)2 {3 string name = TextBox1.Text;4
Response.Redirect(st...
分类:
其他好文 时间:
2014-06-09 18:48:32
阅读次数:
211
之前一直用着好好的,今天打开HANA Studio突然发现一个系统都不在了;提示:‘Secure
storage is locked’
我点旁边的Unlocked没有任何反应,右键也没有功能了。如下图还以为自己客户端出问题,卸载重装之后也是如此,后来问google终于找到解决办法。打开NANA
St...
分类:
其他好文 时间:
2014-06-09 16:29:45
阅读次数:
394
加载JDBC驱动程序提供JDBC连接的URL 创建数据库的连接 创建一个Statement
执行SQL语句处理结果关闭JDBC对象加载JDBC驱动程序 在连接数据库之前,首先要加载想要连接的数据库的驱动到JVM(Java虚拟机),
这通过java.lang.Class类的静态方法forName(St...
分类:
数据库 时间:
2014-06-09 13:43:19
阅读次数:
463