摘要:
https://wiki.onosproject.org/display/ONOS/Increasing+VM+disk+space 阅读全文
摘要:
计算方法 第一步 首先计算Ax, Ay : 可以看出,首先需要计算出 w, 如果N=4,那么w=-j(或者-i) 第二步 再利用公式F(u,v)=1/N * Ax *f *Ay 常见傅里叶矩阵 欧拉公式 阅读全文
摘要:
DS is called data segment register. It points to the segment of the data used by the running program. You can point this to anywhere you want as long 阅读全文
摘要:
int和Integer的区别 1、Integer是int的包装类,int则是java的一种基本数据类型 2、Integer变量必须实例化后才能使用,而int变量不需要 3、Integer实际是对象的引用,当new一个Integer时,实际上是生成一个指针指向此对象;而int则是直接存储数据值 4、I 阅读全文
摘要:
虽然超类对象可以引用子类对象,但是这个超类对象不能使用子类方法: 、、、 ………………这个叫多态、 …………………………………………………………………………………………………………………… 抽象类的类型变量引用子类对象与非抽象类引用子类对象的区别:??? 阅读全文
摘要:
https://www.cnblogs.com/dolphin0520/p/3920373.html 阅读全文
摘要:
1.Listlterator 接口是 Iterator 的一个子接口。它定义了一个方法用于在迭代器位置前面增加一个元素:void add(E element) 阅读全文