/// /// 扩展方法类 /// public static class
CommonExtension { /// /// 数据类型对应转换方法字典 /// static Dictionary> dic_c...
分类:
Web程序 时间:
2014-05-27 02:50:17
阅读次数:
399
static 可以减少命名冲突如:test1.c:int atest2.c : int agcc
test1.c test2.c报重复定义错误但是在其中一个加static,可解决此问题同样适用于函数。
分类:
其他好文 时间:
2014-05-27 01:34:02
阅读次数:
176
法一:点击window->new
window,看看新的窗口是否能够显示代码区,可以就把旧的那个窗口关闭,成功法二:http://juhbgf.blog.163.com/blog/static/598317682013455118751/
分类:
系统相关 时间:
2014-05-27 01:30:57
阅读次数:
286
// /// 导出到Excel lichenghu /// /// public static
void ToExcel(DataTable dt) { string sb = ""; ...
分类:
其他好文 时间:
2014-05-27 00:44:33
阅读次数:
251
class 点面关系{static void Main(string[]
args){//Vector2D point1 = new Vector2D(39.909209536859834,
116.3225715637207);//inVector2D point1 = new Vector2D(...
分类:
其他好文 时间:
2014-05-24 06:26:21
阅读次数:
379
public classTest {public Test()
{System.out.println("
构造函数");}@1:静态初始化块static{System.out.println("static{}");}@2:初始化块{System.out.println("{}");}public...
分类:
编程语言 时间:
2014-05-19 15:35:02
阅读次数:
295
http://blog.163.com/xxciof/blog/static/7978132720095193113752/
oracle中 connect by prior 递归算法 Oracle中start with...connect by prior子句用法 connect
by 是结构化查...
分类:
数据库 时间:
2014-05-19 14:45:10
阅读次数:
321
域和静态方法不具有多态性:public class Test3 { public static
void main(String[] args) { Super sup = new Sub(); System.out.println(sup.field);
System.out.println...
分类:
其他好文 时间:
2014-05-19 14:28:59
阅读次数:
314
http://space.itpub.net/14466241/viewspace-624132示例代码如下:namespace
SampleListT{ class Program { static void Main(string[] args) { //using System...
分类:
其他好文 时间:
2014-05-19 13:28:56
阅读次数:
233
首先是静态代理: 1 public class Test1 { 2 3 public static
void main(String[] args) { 4 IA a = new APoxy(new A()); 5 a.doJob(); 6 } 7 ...
分类:
编程语言 时间:
2014-05-19 12:01:39
阅读次数:
302