摘要:
5.1编程语言的基元类型基元类型:编译器直接支持的数据类型。基元类型直接映射到Framework类库中存在的类型。如C#中,int->System.Int32简化过程:System.Int32 a = new System.Int32();int a = new int();System.Int32 a = 0;int a = 0;编译器自动在所有源代码文件中添加using指令:using int = System.Int32;...C#语言规范推荐使用关键字,而不是完整类型名称。作者认为应该使用完整类型名称,原因如下:1.写法的困惑。string与String2.语言的差异。C#中lo 阅读全文
posted @ 2014-02-21 17:17
IT浪潮之巅
阅读(182)
评论(0)
推荐(0)
摘要:
AJAX简介AJAX = Asynchronous JavaScript And XML(异步 JavaScript 及 XML)AJAX 是 Asynchronous JavaScript And XML 的首字母缩写。AJAX 使用 JavaScript 在 web 浏览器与 web 服务器之间... 阅读全文
posted @ 2014-02-21 09:38
IT浪潮之巅
阅读(266)
评论(0)
推荐(0)

浙公网安备 33010602011771号