More actions
imported>novaman No edit summary |
imported>novaman No edit summary |
||
| Line 4: | Line 4: | ||
== 강의 내용 == | == 강의 내용 == | ||
=== ByteCode.java === | |||
public class ByteCode{ | |||
public ByteCode() { | |||
System.out.println("hello"); | |||
} | |||
public void methodOperandStack(){ | |||
int a, b, c; | |||
a = 5; | |||
b = 1; | |||
c = a + b; | |||
} | |||
} | |||