猿问

参数 args.length 是什么意思?

我想问你关于解释下面程序中 args.length !=2 的帮助。在我读过的书中,他们检查是否有两个文件,但为什么使用 ! 感叹号?这对我来说没有意义。我已经找到了关于 args.length 的信息,但即使在 stackowerflow 上也没有找到关于这个检查文件的信息,因此我在这里问。谢谢你。


java CopyFile first.txt second.txt - this is put on comand line


import java.io.*;


class CopyFile{

  public static void main(String args[]) throws IOException{


    int i;


      FileInputStream fileIn = null;

      FileOutputStream fileOut = null;


        **//firstly check whether both two files has been set up**

        if(args.length != 2) {

          System.out.println("Using: CopyFile system");

          return;

        }


慕码人8056858
浏览 260回答 1
1回答
随时随地看视频慕课网APP

相关分类

Java
我要回答