Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试为车辆服务类型编写主要方法。任何帮助将不胜感激,我已经为我的 serviceType 变量创建了一个设置器。
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 示例会教给您足够多的知识,您无需再问这个问题。