online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
/****************************************************************************** Online Java Compiler. Code, Compile, Run and Debug java program online. Write your code in this editor and press "Run" button to execute it. *******************************************************************************/ public class Main { public static void main(String[] args) { // this works, and inner1 and inner2 seem to be new instances Outer.Inner inner1 = new Outer.Inner(); Outer.Inner inner2 = new Outer.Inner(); inner1.setName("Mario"); inner1.say(); inner2.setName("Luigi"); inner2.say(); // if Inner is not a public static class this gives this error: // error: an enclosing instance that contains Outer.InnerNoStatic is required Outer.InnerNoStatic inner3 = new Outer.InnerNoStatic(); } }
public class Outer { public static class Inner { private String name; public void say() { System.out.println("Hi " + name); } public void setName(String name) { this.name = name; } } public class InnerNoStatic { public void say() { System.out.println("Hi from InnerNoStatic"); } } }

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue