MSDN上解释Internal如下: The internal keyword is an access modifier for types and type members. Internal types or members are accessible only within files in the same assembly. 即, 仅允许相同程序集内的代码调用类型或成员. 那么是否可以调用这些internal的方法呢? 如果被调用的程序集, 在代码中使用了InternalsVisi…
最近项目遇到了问题,有个asp.net web程序只能在IE7 运行,现在xp都淘汰了,大家都用IE8-IE11,因此这个web app也需要升级 适应所有IE版本.照成IE版本不兼容的问题主要来致document.createElement方法的调用,如: function addStyleNo(value, cannotDel) { if (!value) { value = ''; } var tb = $('tbodyStyle'); var tr…
1.没有super方法 /* * 子类方法覆盖父类方法,用super方法可以调用父类被覆盖的方法 */ class fruit{ public fruit() { System.out.println("fruit !"); } public void name() { System.out.println("我是水果!"); } } class apple extends fruit{ public apple() { System.out.println(&qu…