在cxGridDBTableView的OnCustomDrawCell事件中
begin
AText:=IntToStr(ARecord.Index);
end;
procedure TMain_Form.cxgrdbtblvwGrid1DBTableView1CustomDrawCell(
Sender: TcxCustomGridTableView; AC...
分类:
其他好文 时间:
2015-03-31 18:06:11
阅读次数:
265
每个对象都有一个标志锁。当对象的一个线程访问了对象的某个synchronized数据(包括函数)时,这个对象就将被“上锁”,被声明为synchronized的数据(包括函数)都不能被调用(因为当前线程取走了对象的“锁标志”)。
只有当前线程访问完它要访问的synchronized数据,释放“锁标志”后,同一个对象的其它线程才能访问synchronized数据。
注意:每个class也有一个“锁标...
分类:
编程语言 时间:
2015-03-31 18:05:50
阅读次数:
168
首先zygote创建了appruntime的对象,并调用他的start。此后的活动由AppRuntime来控制
然后调用startVM来创建了虚拟机,调用startReg来注册JNI的函数
通过JNI调用zygoteInit进入了java的世界
调用registerZygoteSocket来响应子孙后代的请求,同时调用preload函数进行资源的预加载
调用startSystemServer来进行系统启动的后续工作
完成了java世界的初创工作后,变进入了select循环,来处理后续的请求。...
分类:
移动开发 时间:
2015-03-31 18:04:50
阅读次数:
196
rowspan表示横跨行(意思是上下合并),colspan表示横跨列(意思是左右合并)。 //比较难理解,但是很重要。
jsp代码如下:
??
rowspan="4">腾讯微信 //此行表示横跨4行。
http://www.cost88.com/recjr/jr_index.html?recept...
分类:
其他好文 时间:
2015-03-31 18:05:40
阅读次数:
201
利用java的反射机制,我们可以得到对象里的方法列表,参数列表以及对应的值,那么我们就可以利用这些做一个万能的插入数据库的方法。
以下方法中表名要和数据库名一致。
protected void insert(Object ob){
ContentValues initialValues = new ContentValues();
Class c = ob.getClass()...
分类:
移动开发 时间:
2015-03-31 18:05:29
阅读次数:
160
在myeclipse中使用的,tomcat异常:
java.lang.UnsatisfiedLinkError: D:\JAVA\ApacheTomcat\bin\tcnative-1.dll: Can’t load IA 32-bit .dll on a AMD 64-bit platform
at java.lang.ClassLoaderNativeLibrary.load(NativeM...
分类:
其他好文 时间:
2015-03-31 18:03:43
阅读次数:
157
ADT 23.0.2找不到Annotation Processing选项,解决方法...
分类:
移动开发 时间:
2015-03-31 18:03:28
阅读次数:
153
在事实和情绪之间,潜藏着纷繁复杂而隐蔽的心智模式,他们就像暗物质一样,看不见摸不着,但对你的行为产生巨大的引力。...
分类:
其他好文 时间:
2015-03-31 18:02:46
阅读次数:
154
STL源码分析 # vector #
下面是一个使用vector的demo:
#include
#include
using namespace std;
int main()
{
/*
** To create a vector which contain 10 elements and the value
** of each element i...
分类:
其他好文 时间:
2015-03-31 18:03:36
阅读次数:
160
Register-SPWorkflowService 远程服务器返回错误: (404) 未找到 如何解决...
分类:
其他好文 时间:
2015-03-31 18:02:07
阅读次数:
122
Nim or not Nim?
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1099 Accepted Submission(s): 547
Problem Description
Nim is a tw...
分类:
其他好文 时间:
2015-03-31 18:02:06
阅读次数:
202
题目:
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.
If the number of nodes is not a multiple of k then left-out nodes in the end should remain...
分类:
其他好文 时间:
2015-03-31 18:02:00
阅读次数:
114
I just don’t want to regret it: 没什么好说的=。=,代码注释的很详细。
Size visivleSize = Director::getInstance()->getVisibleSize();/* 创建一个精灵 */
Sprite* sprite = Sprite::create("sprite.png");
sprite->setPosition(Point...
分类:
其他好文 时间:
2015-03-31 18:03:03
阅读次数:
106
android 中想要实现图表的展示,非常麻烦。网上查了一下实现方案,无非三种:
1.自己写画布,慢慢实现,要求太高,很难搞定。
2.用AchartEngine实现,丑陋,而且扩展性很小。
3.采用webview加载js的方式,虽然理论上会比较耗费资源,但是效果不错,而且难度小很多。
下面以一个例子具体介绍依稀这种方式:
首先布局文件:
<RelativeLayout xmlns:an...
分类:
移动开发 时间:
2015-03-31 18:03:21
阅读次数:
448
题目地址:FZU 2040
重点在于构造矩阵,先状压,然后根据每一行是否与下一行分割了来构造一个2^(m-1)*2^(m-1)的矩阵,然后套上矩阵快速幂就可以了。937ms险过。。
代码如下:#include
#include
#include
#include
#include
#includ...
分类:
其他好文 时间:
2015-03-31 18:03:51
阅读次数:
147
请原谅我隔了这么久才开始写这一系列的第二篇博客,没办法忙新产品发布,好了废话不说了,先回顾一下:在我的上一篇博客http://www.cnblogs.com/2010wuhao/p/4363041.html#3153255 写了如何配置Android开发环境,只是用文字和图片展示了开发Metro风格Launcher的初步设计和产品要求,这一篇文章将会从代码上讲解如何实现对应的UI效果,好了,评书开...
分类:
移动开发 时间:
2015-03-31 18:02:40
阅读次数:
171