- 博客(5)
- 收藏
- 关注
原创 yum install perl pciutils p
yum install perl pciutils python gcc-gfortran libxml2-python tcsh libnl.i686 libnl expat glib2 tcl libstdc++ bc tk gtk2 atk cairo numactl pkgconfig ethtool lsof python-devel redhat-rpm-config rpm-build gcc kernel-devel-4.14.0-115.el7a.0.1.aarch64 libtool
2024-04-03 16:25:32 189 1
原创 2021-02-01
javascript中 if(变量)和if(变量==true)的区别 if(判断表达式){ 执行内容 } 如果判断表达式为true,则执行括号中的内容。 这里,变量如果不为0,null,undefined,false,都会被处理为true。只要变量有非0的值或是某个对象,数组,字符串,都会认为true 变量==true,变量为bool值,并且为true,才认为符合。 var a;//定义一个变量没有初始化 if(a){alert(1) return};//这里不会执行,因为a没有值,所以为...
2021-02-01 16:09:09 53
转载 2021-02-01
父类实现了Serializable,子类不需要实现Serializable 相关注意事项 a)序列化时,只对对象的状态进行保存,而不管对象的方法; b)当一个父类实现序列化,子类自动实现序列化,不需要显式实现Serializable接口; c)当一个对象的实例变量引用其他对象,序列化该对象时也把引用对象进行序列化; d)并非所有的对象都可以序列化,至于为什么不可以,有很多原因了,比如: 1.安全方面的原因,比如一个对象拥有private,public...
2021-02-01 15:24:07 66
转载 The difference between maven plugins and dependencies
Both plugins and dependencies are Jar files. But the difference between them is, most of the work in maven is done using plugins; whereas dependency is just a Jar file which will be added to the classpath while executing the tasks. For example, you use..
2020-12-07 11:08:32 57
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人