Answers for "how to run a non static main"

0

can you run non static method on main

//You simply need to create an instance of the Object you created
public Class Obj{
	public void nonStaticMethod(){
	//execute code
	}
	public static void main(string args[]){
		Obj obj = new Obj();
	    obj.nonStaticMethod
	}
}
Posted by: Guest on June-01-2020

Browse Popular Code Answers by Language