VC代码生成里面的/MT /MTd /MD
/MDd的意思。意思上已经很明白了。但是往往很多人弄不清楚到底怎么选择。/MT是 "multithread, static version ”
意思是多线程静态的版本。定义了它后,编译器把LIBCMT.lib 安置到OBJ文件中,让链接器使用LIBCMT....
分类:
其他好文 时间:
2014-05-10 08:03:49
阅读次数:
354
In Django parlance, a project is the final product,
and it assembles one or more applications together.Manage.py is a pointer back
to Django-admin.py ...
分类:
其他好文 时间:
2014-05-10 07:56:19
阅读次数:
480
public class MainActivity extends
ActionBarActivity { private static ActivityManager am; private static List
appList; private static List ta...
分类:
其他好文 时间:
2014-05-10 07:49:35
阅读次数:
256
/** * Created by rabbit on 2014-5-9. */ class
ArrayTest2 { public static void BubbleSort(int [] arr) //创建冒泡排序方法 { for (int
x=0;x<arr.length-1;x++) ...
分类:
编程语言 时间:
2014-05-10 06:39:45
阅读次数:
355
代码示例 public static void main(String[] args)
throws Exception { ConnectingIOReactor ioReactor = new
DefaultConnectingIOReactor(); Pool...
分类:
其他好文 时间:
2014-05-10 06:35:51
阅读次数:
942
最开始学习Java,接触到的应该就是main函数:Public static void
main(String args[]){}但是main函数为什么要这样写,又隐藏了哪些被忽视的知识,今天深入学习一下。关键字分析
最直观的就是逐个关键字分析,1.public2.static3.参数args[]....
分类:
编程语言 时间:
2014-05-10 05:58:44
阅读次数:
305
原文:http://holysonll.blog.163.com/blog/static/21413909320134111054352/JS中innerHTML,innerText,value2013-05-11
11:24:49|分类: JS与JQ |标签:.innerhtml.valueinn...
分类:
Web程序 时间:
2014-05-10 05:35:01
阅读次数:
365
参考资料《大话设计模式》using System;using
System.Collections.Generic;using System.Linq;using System.Text;namespace
ds_proxy{ class Program { static ...
分类:
其他好文 时间:
2014-05-10 05:15:33
阅读次数:
290
方法一:public class QuickSortExp1{ public static
void main(String[] args){ int[] sortArray = new int[]{5,7,4,2,9,8,3,6};
System.out.println("before sor.....
分类:
编程语言 时间:
2014-05-10 05:08:46
阅读次数:
496
public class TestSelectSort{ public static void
main(String[] args){ int[] sortArray = new int[]{5,7,4,2,9,8,3,6};
System.out.println("before sortin.....
分类:
编程语言 时间:
2014-05-10 05:04:52
阅读次数:
322