240 发简信
IP属地:上海
  • Java 容器

    Collection 是一个接口 The JDK does not provide any direct implementations of this interface,...

  • 120
    同一局域网内访问mac主机下的虚拟机ubuntu18.04

    “ 如果局域网想要访问虚拟机的服务,一种方式是将虚拟机的网络连接设置成桥接模式,因为这时候虚拟机相当于所在物理机同一IP段的独立计算机,这时候其他的局域网内的计算机当然可以访...

  • Annotation

    Annotation attached with class, interface, methods, fields annotation的内容被java编译器和JVM利用 ...

  • 泛型

    Generic Note that type parameters can represent only reference types, not primitive typ...

  • IO

    File An abstract representation of file and directory pathnames. public class Fileexten...

  • JVM

    JVM 通过在实际的计算机上仿真模拟各种计算机功能来实现的。由一套字节码指令集、一组寄存器、一个栈、一个垃圾回收堆和一个存储方法域等组成。JVM屏蔽了与操作系统平台相关的信息...

  • 代理模式

    Proxy 代理角色:代理对象内部含有目标对象的引用,从而可以在任何时候操作目标对象;代理对象提供一个与目标对象相同的接口,以便可以在任何时候替代目标对象。代理对象通常在客户...

  • 反射

    Reflection A way for a program/application to learn about itself, change itself, and pe...

  • JSON

    JSON Object enclosed within braces, { } – Example: { "name": "html", "years": 5 } Array...

  • ssa数据降噪算法简易实例

    原始数据是[1 9 2 8 3 7] 嵌入: 比如选择的窗口长度L为3,得到的矩阵就是: [1 9 2] [9 2 8] [2 8 3] [8 3 7] SVD分解: Pyt...