CS计算机代考程序代写 public class Clothing implements Wearable {

public class Clothing implements Wearable {

private String bodyPart;

public Clothing(String bodyPart) {
this.bodyPart = bodyPart;
}

public void wear() {
System.out.format(“%s is worn on your %s.\n”,
this.getClass().getName(), this.bodyPart);
}
}