摘要: 命令行传参 有时候你希望运行一个程序时候再传递给它消息。这要靠传递命令行传参数给main()函数实现。 public class CommandLine{ public static void main(String args[]){ for(int i=0;i<args.length;i++){ 阅读全文
posted @ 2024-12-25 16:29 心流星雨 阅读(19) 评论(0) 推荐(0)