摘要:
C# 中,const 表示常量,readonly 表示只读域const 与 readonly 本质的区别是,const 是编译时常量,readonly 是运行时常量。 编译时常量,就是在编译时就需要确定的;而运行时常量是在运行时确定的。const 效率略高于 readonly。const 只用于数字和字符串;readonly 用于任何类型。const 用于全局变量、局部变量或 class 的 field;readonly 只用于 class 的 field,比如函数中就不能用 readonly,这就示上述示例中 readonly 为什么要放在 class 中的原因了。相关阅读:谈谈 const 阅读全文
摘要:
接口地址http://fw.qq.com/ipaddress 最后面没有斜杠。<script type="text/javascript" src="http://fw.qq.com/ipaddress"></script><script type="text/javascript"><!--alert("您的IP:" + IPData[0] + "\r\n" + "所属省:" + IPData[2] + "\r\n&quo 阅读全文