我是java新手,我有一个简单的问题,我有这个代码
public abstract class Seq { int a, b, c;}
class For extends Seq{
public For( int first, int last, int step )
{
a=first;
b=last;
c=step;
}
主要我有:
For r1= new For(3, 4, 5);
我想要做的是我想在 main 中添加这个语句,System.out.print(r1);
我希望这个语句打印“你的参数:3、4、5”
我怎样才能做到这一点?