Skip to content

Instantly share code, notes, and snippets.

@ssd863419
Created October 7, 2015 08:26
Show Gist options
  • Save ssd863419/12fa3c71187f837dc4b0 to your computer and use it in GitHub Desktop.
Save ssd863419/12fa3c71187f837dc4b0 to your computer and use it in GitHub Desktop.
编写一个Java程序在屏幕上输出“hello world”
public static void main(String[] args) {
System.out.println("hello world");
}
@ssd863419
Copy link
Author

public class Test {
public static void main(String[] args) {
new Test().t1("hello world");
}
public void t1(String str) {
System.out.println(str);
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment