Since arrays are always passed by reference, all changes made to the array elements inside the function will be made to the original array.int Process...
分类:
编程语言 时间:
2015-03-05 01:42:48
阅读次数:
212
References:https://community.flexerasoftware.com/showthread.php?182791-Replace-a-single-file-embedded-in-an-MSIWindows Installer Scripting ExamplesWiF...
分类:
其他好文 时间:
2015-03-03 18:22:42
阅读次数:
115
最近在做一个仿百度网盘的网页小应用,找到了一个优雅简洁的分页插件,和百度搜索的分页很相似,对他进行了二次封装,拿出来跟大家分享下插件源码/** * This jQuery plugin displays pagination links inside the selected elements. *...
分类:
编程语言 时间:
2015-02-24 21:00:17
阅读次数:
325
1.把C++当成一门新的语言学习(和C 没啥关系!真的);2.看《Thinking In C++》,不要看《C ++变成死相》(C++编程思想,翻译的非 常差);3.看《The C++ Programming Langua ge》(这本东西有影印板的)和《Inside T he C++ Object...
分类:
编程语言 时间:
2015-02-19 19:45:40
阅读次数:
240
这个问题正常和老版本有关,老版本老出现这问题
如果你是老版本就这样写下就好了
new Thread(){public void run() {
Looper.prepare();
beginConnect();//从服务端获取消息
Looper.loop();
};}.start();
如果不是2.几的版本,那就是下面的问题了。
...
分类:
编程语言 时间:
2015-02-13 13:26:17
阅读次数:
162
Channel 9的官方解释http://channel9.msdn.com/posts/Inside-the-Azure-Storage-Outage-of-November-18th曾经在自己的Blog提到过这次事件http://www.cnblogs.com/SignalTips/p/4109...
分类:
其他好文 时间:
2015-02-11 10:45:07
阅读次数:
128
A page can't be manipulated safely until the document is "ready." jQuery detects this state of readiness for you. Code included inside $( document ).r...
分类:
其他好文 时间:
2015-02-08 15:23:48
阅读次数:
165
1、java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
在Android中不允许Activity里新启动的线程访问该Activity里的UI组件,这样会导致新启动的线程无法改变UI组件的属性值。
出现java.lang.RuntimeExcepti...
分类:
移动开发 时间:
2015-02-05 15:04:44
阅读次数:
145
在Oracle函数中进行insert操作就会报 ORA-14551: cannot perform a DML operation inside a query,本文给出了问题的原因和解决方法,并给出了使用建议。...
分类:
其他好文 时间:
2015-02-04 18:49:43
阅读次数:
143
I would not suggest Richies answer, because you are screwing up the data inside the database. You would not fix your problem but try to "hide" it and ...
分类:
数据库 时间:
2015-02-04 18:23:15
阅读次数:
169