public class CharList
{
private int lenth;
char charlist[];
CharList(int lengthtemp)
{
lenth=lengthtemp;
}
charlist=new char[lenth];
}
//Syntax error on token "charlist", VariableDeclaratorId expected after this token
这是什么意思啊
java类里面不能直接写代码逻辑,得用方法块包起来。
charlist=new char[lenth];这句话要么写到CharList(int lengthtemp)构造函数里,要么另写一个方法,再要么,直接用大括号把charlist=new char[lenth];括起来就行了,其实这样写和放到构造函数里面没啥区别~
恩恩 谢谢你了啊 尝试成功