gpt4 book ai didi

java - 声明和初始化int,调用构造函数时出错

转载 作者:行者123 更新时间:2023-12-01 06:53:49 24 4
gpt4 key购买 nike

当我尝试创建新的 int 对象时:

int g= new int(); 

netbeans 告诉我:

Incompatible types
required: int
found: int[]
'[' expected
illegal start of expresion.

我只想创建新的 int。

最佳答案

对于原始数据类型,您没有构造函数:

int g = 5;

或者直接说

int g; //declaration

但请记住,还有一些类为每个原始数据类型包含更多功能。它的数据类型名称首字母大写:

Integer g = new Integer(5); //but it needs the parameter

例如,您有一个从字符串创建整数的函数:

Integer.parseInt("5");

但是声明部分其实并不需要它们。

关于java - 声明和初始化int,调用构造函数时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17962858/

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