Advertisement
andylai

staticMethodCannotCallnonstaticMethod

Aug 23rd, 2014
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.16 KB | None | 0 0
  1. public class Runner{
  2.     public static String name="Andy";
  3.     public void star(){
  4.         //...statement
  5.     }
  6.     public static void main(String args[]){
  7.         start();
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement