Created
November 9, 2016 06:05
-
-
Save karanahuja-android/1ed7f1f84c26359dbd827f075238c077 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Lesson1neeraj.java | |
public class Lesson1neeraj{ | |
//instance method | |
private void sayHello(String name){ | |
System.out.println("Hello "+name); | |
} | |
public static void main(String[] args){ | |
{1,2,3,4,5,6} | |
String[] args = null | |
System.out.println("Hello World"); | |
System.out.println("Hello "+args[0]);// array index out of bounds exception | |
Lesson1neeraj lesson = new Lesson1neeraj();//creating instance/object | |
lesson.sayHello(args[0]); | |
//any questions ?? | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment