gpt4 book ai didi

java - main 函数可以使用 String 而不是 String[]

转载 作者:行者123 更新时间:2023-12-01 07:19:41 25 4
gpt4 key购买 nike

public static void main(String[] args)我知道按照惯例, main 函数接受一个参数 args ,该参数包含作为 String 对象数组提供的命令行参数。

  • 除了 String[] args 之外,我没有看到 main 接受任何参数。为什么不是 StringInteger 数组?
  • 如果有一种方法可以指定 main 函数的输入,请提供示例。

最佳答案

回答您的问题:

详细信息:

http://docs.oracle.com/javase/7/docs/technotes/tools/windows/java.html

The java command starts a Java application. It does this by starting a Java runtime environment, loading a specified class, and calling that class's main method.

The method must be declared public and static, it must not return any value, and it must accept a String array as a parameter. The method declaration has the following form:

public static void main(String[] args)

关于java - main 函数可以使用 String 而不是 String[],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43721966/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com