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.
System.getProperty("line.separator")有System.getProperty("os.name")价值观吗?
System.getProperty("line.separator")
System.getProperty("os.name")
或者我需要检查代码中的返回值null吗?
null
是的,它们是由 JVM 自动插入的
问题是:您的代码可以处理空值吗?如果是,请检查它,即使这部分代码将被调用是非常不现实的,如果不添加if null -> terminate概念,否则可能会导致麻烦。
虽然 JVM 会为你插入这个,但仍有两种情况下你可以得到 null:
这些情况都不足以要求默认处理它们。