public class Main {
public static void main(String[] args) {
show();
}
private void show(Vanue vanue) {
System.out.println(vanue);
}
}
class Vanue {
private int number;
private int numberOfSeats;
private int numberOfComps;
private String buildingName;
public Vanue() {
}
// getters and setters
@Override
public String toString() {
// here impl...
}
}
Comments
Leave a comment