Java examples for Object Oriented Design:Field
Declaring Variables, helloMessage variable is declared as a local variable
public class HelloApp { public static void main(String[] args) { String helloMessage;//from w ww .jav a2s . c o m helloMessage = "Hello, World!"; System.out.println(helloMessage); } }