我有一个类Line
和一个合适的构造函数。
我定义:
Line l1 = new Line("A", "B");
我有一个班级ts
,有一个成员:Vector<Line> allLines = new Vector<Line>();
我想将线添加l1
到这个向量中..
我尝试了三个选项,但它不起作用:
ts.allLines.addElement(l1);
但我得到了错误:
The method addElement(Line) in the type Vector<Line> is not applicable for the arguments (Line)
ts.allLines.add(l1);
但我得到了:
The method add(Line) in the type Vector<Line> is not applicable for the arguments (Line)
但它不起作用。