`
forai
  • 浏览: 100774 次
  • 性别: Icon_minigender_1
  • 来自: 昆明
社区版块
存档分类
最新评论
文章列表
var n = new Number(3); var num = 3; alert(typeof num); alert(typeof n);   输出:number、object   -----------------------------------------------解答: 原理:(小刀解答、from:franky)   var myClass = {}; //创建一个没有成员的对象 myClass.constructor = Class; Class.call( myCLass ); //让myClass 成为Class函数里的this  所以有:( ...
String sep = File.separator // 系统有关的默认名称分隔符,字符串类型。 //file:/E:/softoon/workspace_softoon/TestMobile/bin/ System.out.println(ConfigUtil.class.getClassLoader().getResource("")); //file:/E:/softoon/workspace_softoon/TestMobile/bin/ System.out.println(ClassLoader.getSystemResour ...

冒泡排序

public static void main(String[] args) { int[] num = {6,5,9,8,45,2,3,55,1}; // Arrays.sort(num); for (int i = 0; i < num.length-1; i++) { for (int j = i+1; j < num.length; j++) { if(num[i]>num[j]){ int temp = num[i]; num[i] = num[j]; num[j] = temp; S ...
Global site tag (gtag.js) - Google Analytics