hc学习平台

 找回密码
 立即注册
搜索
热搜: 活动 交友 javakc
 › 张鹏举 › 日志

Which line contains a constructor in this class definition?  

2022-06-14 14:47:40 查看(119) 回复(0)

public class Counter { //(1)
	int current,step;
	public Counter(int startValue,int stepValue){ //(2)
		set(startValue);
		setStepValue(stepValue);
	}
	public int get(){  //(3)
		return current;
	}
	public void set(int value){ //(5)
		current=value;
	}
	public void setStepValue( int stepValue){ //(5)
		step=stepValue;
	}
}

 

A、Code marked with (1) is a constructor

B、Code marked with (2) is a constructor

C、Code marked with (3) is a constructor

D、Code marked with (4) is a constructor

E、Code marked with (5) is a constructor

 

B

评论 (0 个评论)

facelist

全部作者的其他最新日志



站点统计|举报|Archiver|手机版|小黑屋|Comsenz Inc.

GMT+8, , Processed in 0.195171 second(s), 9 queries .

Powered by javakc! X1.0

© 2004-2014 javakc

f1208.com 备案号:京ICP备14030918号-1

返回顶部