BytecodePages
public class Carnivore { eatMeat (int iFoodLeft) { iFoodLeft--; } }
results in a separate classfile:
c:jsh>ls
Carnivore.class
upon compilation:
c:jsh>javac Carnivore.java
Note: It is tremendously unlikely that code snippet would compile on it's own, and it is merely an example.
See also ClassFileFormat