Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
下面显示的代码显示了一个Get获取search具有默认值的字符串的方法:"".
Get
search
""
search当具有非空默认值并且从未更改时,该值如何可能为空?
当搜索具有非空默认值并且从未更改时,该值如何可能为空?
如果显式传递null给方法(或为 null 的变量),则不使用默认值。
null
仅当您在没有适当参数的情况下调用方法时才使用默认值,在这种情况下,编译器会为您“填充”默认值。如果您使用某些东西(包括null或对象变量)调用该方法null,您将在那里得到一个空值。