默认 VC 生成的 EXE 文件的图标很大众,可以根据以下办法修改 exe 的图标。以
Visual C++ 6.0 为例:1. 创建项目,添加代码,并且保证项目可以正常编译。2. 为项目增加资源文件:点菜单:File ->
New...,选择 Files 中的 Resource Script,并在...
分类:
其他好文 时间:
2014-05-23 08:55:35
阅读次数:
271
常用快捷键:Debug:F8 Stop debugger:Shift + F8 Toggle
breakpoint:F5 Next line:F7 Step into:Shift + F7 Step out:Ctrl + F7Run to C...
分类:
其他好文 时间:
2014-05-22 03:29:01
阅读次数:
381
Spring不但支持自己定义的@Autowired注解,还支持几个由JSR-250规范定义的注解,它们分别是@Resource、@PostConstruct以及@PreDestroy。
@Resource的作用相当于@Autowired,只不过@Autowired按byType自动注入,而@Res....
分类:
编程语言 时间:
2014-05-22 03:22:42
阅读次数:
228
=> build/tools/zipalign:
out/host/linux-x86/bin/zipalign (host)=> build/tools/atree:
out/host/linux-x86/bin/atree (host)=> build/tools:=> build/to...
分类:
移动开发 时间:
2014-05-22 00:26:32
阅读次数:
2792
在查看alert日志的时候发现: 1
*********************************************************************** 2 3
Fatal NI connect error 12170. 4 5 VERSION INFORMATI...
分类:
其他好文 时间:
2014-05-21 20:13:32
阅读次数:
298
先来看一段代码: public static void main(String[] args) {
new Timer().schedule(new TimerTask() {
@Override
public void run() {
System.out.println("阳光小强");
}
}, 5000);
int i = 0;
wh...
分类:
移动开发 时间:
2014-05-21 16:56:51
阅读次数:
296
public class setZero {
static void print(int [][]a){
for(int i=0;i<a.length;i++){
for(int j=0;j<a[i].length;j++){
System.out.print(a[i][j]+" ");
}
System.out.println();
}
}
/*stati...
分类:
其他好文 时间:
2014-05-21 16:16:56
阅读次数:
252
Description
A subsequence of a given sequence is the given sequence with some elements (possible none) left out. Given a sequence X = another sequence Z = is a subsequence of X if there exists a ...
分类:
其他好文 时间:
2014-05-21 10:58:39
阅读次数:
237
curl_escape(PHP 5 >= 5.5.0)curl_escape—使用 URL
编码给定的字符串说明?stringcurl_escape(resource$ch,string$str)该函数使用 URL 根据?RFC
3986编码给定的字符串。参数?ch由curl_init()返回的 c...
分类:
其他好文 时间:
2014-05-21 06:13:34
阅读次数:
664
在项目开发中,使用SQLite一不小心就会碰到各种DB异常,网上搜了下没有这方面的资料,写出来记录下。异常信息:android.database.sqlite.SQLiteMisuseException:
library routine called out of sequence: , while...
分类:
数据库 时间:
2014-05-21 03:12:20
阅读次数:
1023