-3
這是什麼語句來做到: -屬性(屬性默認值)是做什麼的?
屬性道具=新的屬性(Properties默認)
當我使用: -
Properties props = new Properties (System.getProperties());
我得到的props
大小爲零 但是當我寫這樣的東西: -
Properties props = System.getProperties()
我得到一些非零大小爲props
https://docs.oracle.com/javase/7/docs/api/java/util/Properties.html#Properties%28java.util.Properties%29 – Tom
是的,我已經看到了,但是線傳達,創建一個空的屬性列表與指定的默認值? – prvn
在類文檔中,它說:「屬性列表可以包含另一個屬性列表作爲其」默認值「;如果在原始屬性列表中找不到屬性鍵,則搜索此第二個屬性列表。」 –