java stack Overfloq code example

Example 1: java stack overflow

class someClass{
	public static void main(string[] args){
      //calling the loop method
    	loop();
    }
  	/*basicly calling the loop method in the loop method
    * that is a way to get a nice stackoverflow
    * your welcome
    */
  	public static void loop(){
    	loop();
    }
}
//or
class someOtherClass{
	public static void main(string[] args){    
     //basicly a never ending loop that has no delay
     while(true){
     	Systen.out.println("STACKOVERFLOW");
     }
   }
}
//or
class someOtherOtherClass{
	public static void main(string[] args){
     //basicly another never ending loop that has no delay
     for (i = 1; i > 0; i++){
     	Systen.out.println("STACKOVERFLOW AGAIN");
     }
   }
}

Example 2: for loop in java stack overflow

for(counter=10;counter>=1;counter--){  System.out.println(counter); }

Tags:

Java Example