为什么不收集任何类型或包装类型或基本类型

为什么不收集任何类型或包装类型或基本类型

本文介绍了为什么我们传递字符串数组作为参数传递给main()方法,为什么不收集任何类型或包装类型或基本类型?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

为什么是强制性的,以传递字符串ARG []为主要方法的参数?
为什么我们不能通过在java中的任何其他数据类型?
什么在java中的主要方法传递字符串ARG []的重要性?

why is it mandatory to pass string arg[] as an argument in main method?why we cannot pass any other data type available in java?whats the importance of passing String arg[] in main method in java?

推荐答案

历史记录。这是因为C的天惯例,甚至更早? Java的大多数了其语法从C。

History. This is a convention since the days of C, maybe even earlier? Java took most of its syntax from C.

此外,命令行参数都是字符串这就是为什么是这样的数据类型。收藏并没有在Java中存在1所以他们不是一个选项。数组确实存在。

Also, command line arguments are Strings which is why that is the data type. Collections did not exist in Java 1 so they were not an option. Arrays did exist.

这篇关于为什么我们传递字符串数组作为参数传递给main()方法,为什么不收集任何类型或包装类型或基本类型?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 18:08