同步1)同步方法2)同步块 21)实例变量 22)
类变量锁定的内容1)锁定类的某个特定实例2)锁定类对象(类的所有实例)一。同步类实例:同步方法public class Demo { public
synchronized void m1(){ ...
分类:
编程语言 时间:
2014-04-29 15:01:02
阅读次数:
493
String field;@Testpublic void test01() { String a =
"aaa"; String b = "aaa"; String c = new String("aaa"); String d = new
String("aaa"); System.out.pr...
分类:
编程语言 时间:
2014-04-29 11:28:46
阅读次数:
391
1.添加元素的时候,先取出数组,再向数组中添加元素:-
(void)addPeason:(AddressPeason*)peason{
if(![[peasongetName]isEqualToString:nil]) {
for(NSString*stringin[_peasonDiction.....
分类:
其他好文 时间:
2014-04-29 11:22:45
阅读次数:
535
好高兴 一上午做了2个题 题意:求素因子只有2 3 5 7 数 约束的个数 我用的时搜索计数法
感觉还应该有比较不错的组合数学方法#includeusing namespace std;__int64 dmax;int prime[4];void
dfs(int t){ if(t>=4) { ...
分类:
其他好文 时间:
2014-04-29 11:21:47
阅读次数:
278
在iOS7中,内购只能在真机上才会调用-
(void)productsRequest:(SKProductsRequest *)request
didReceiveResponse:(SKProductsResponse *)response协议方法若是用模拟器,它回调用-
(void)reques...
分类:
移动开发 时间:
2014-04-29 11:12:46
阅读次数:
1565
将原起始页面View中 Index和
Controller中的HomeController删除后报这样的错误,在global.asax设置好路由后例:public static void
RegisterRoutes(RouteCollection routes) { ...
分类:
其他好文 时间:
2014-04-29 10:38:47
阅读次数:
544
protected void lbtnState_Click(object sender,
EventArgs e) { foreach (var item in div_state.Controls) { if (item is LinkB...
分类:
Web程序 时间:
2014-04-29 10:13:46
阅读次数:
438
函数指针typedef void (*lpFunction)();
//定义一个无参数、无返回类型的函数指针类型lpFunction lpReset = (lpFunction)0xF000FFF0;
//定义一个函数指针指向CPU启动后所执行的第一条指令的位置lpReset(); //调用软重启函...
分类:
其他好文 时间:
2014-04-29 10:13:45
阅读次数:
373
1.调用widnows资源管理器打开文件夹 private void
OpenFolder(string folder) { System.Diagnostics.Process.Start("explorer.exe",
folder); ...
分类:
其他好文 时间:
2014-04-29 09:24:46
阅读次数:
406
qsort(&g_AMTBuf[g_dwAMTLenth], m_nCount,
sizeof(12), Compare);参数说明:1.待排序数组首地址;2.数组中待排序元素数量;3.各元素的占用空间大小;4.指向函数的指针。1 int
Compare(const void *a,const vo...
分类:
其他好文 时间:
2014-04-29 09:12:46
阅读次数:
398