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.
我需要编写一个从命令行参数设置整数大小的程序。如果存在任何命令行参数,它将根据该输入设置大小。否则将设置默认值。假设我不推送任何命令行参数。我的程序如何检测到这一点?
你的主要方法应该是
public static void main(String[] args) { ... }
数组args的长度 == 0
args