我正在尝试为车辆服务类型编写main方法。任何帮助将不胜感激,请,我已经为我的serviceType变量创建了一个setter。
public void setServiceType(String serviceType) {
this.serviceType = serviceType;
}
public static void main(String [] args)
{
Object o=new Object();
o.setServiceType("Full Service");
}
至少我认为这是你想问的?我建议后退一步,阅读一些Java语言的基础知识,因为Hello World示例已经足够教你不必问这个问题了。