单例模式,简言之就是一个类无论实例化多少次,最终都是同一个对象
原生js的几个辅助方式的实现
手写forEch,map,filter
Array.prototype.MyForEach function (callback) {for (let i 0; i < this.length; i) {callback(this[i], i, this);}
};con…
状态 描述 LISTEN represents waiting for a connection request from any remote TCP and port. SYN-SENT represents waiting for a matching connection request after having sent a connection request. SYN-RECEIVED represents waiting for a confirming connect…
元素的比较
基本类型比较 在Java中基本类型比较可以直接比较大小 ,返回一个布尔类型(true或者false)。
int a 10;
int b 20;
System.out.println(a>b);
System.out.println(ab);
System.out.println(a<b);对象比较的问题 对象的比…