Combining both statements into one : Statement « Statement Control « Java Tutorial






class Animal {
  public Animal(String aType) {
    type = aType;
  }
  public String toString() {
    return "This is a " + type;
  }
  private String type;
}
public class MainClass {
  public static void main(String[] a) {
    System.out.println(new Animal("a").getClass().getName()); // Output the
                                                              // class name
  }
}
Animal








4.1.Statement
4.1.1.An Overview of Java Statements
4.1.2.Expressions
4.1.3.Declaring and defining multiple variables in a single statement
4.1.4.Label a statement block
4.1.5.Spreading a single declaration over several lines
4.1.6.How to write multiple assignments in a single statement
4.1.7.Combining both statements into one
4.1.8.Statement Blocks