将新的Point实例添加到Path p并移动Path,使此方法返回的字符串为:“[(3,3)(2,2)(0,0)]”
public String p16Output() {
Path p = new Path();
// TODO
return p.toString();
我自己完成了
答案 0 :(得分:0)
创建一个toString方法并自定义构建字符串的方式。
这方面的一个例子可以是以下
public String toString() {
String s = "";
`//building the string you want to return like so 's = //How you want it. '`
return s;
}