我想为大小为x的数组编写构造函数,其中x是main()中指定的参数。
我的课:

public class CharA
{
  private char[] stack;
  private int n = 0;

  public void CharA (int max)
  {
    this.stack = new char[max];
    this.n = max;
  }


我的main():

public class CharTest
{
  public static void main (String args)
  {
    CharA stack1 = new CharA(100);
  }
}


错误:

CharTest.java:5: cannot find symbol
symbol  : constructor CharA(int)
location: class CharA
    CharA stack1 = new CharA(100);
                   ^


这里有几个使用int数组完成相同操作的示例。为什么它不适用于此char数组?

最佳答案

删除您的“构造函数”中的void

public CharA (int max) {
  // ...
}

07-26 04:56