这句话的作用是什么: -
属性props = new属性(属性默认值)
当我使用时: -
Properties props = new Properties (System.getProperties());
我将props
的大小设为零
但是当我写这样的东西时: -
Properties props = System.getProperties()
我为props
答案 0 :(得分:1)
新创建的属性将为空,但在未命中default
时会查找值。 不将使用默认值急切地填充新属性;它不是复制构造函数。