I don't understand why I can access the private int i outside of the class while it's private.
public class Fish {
private int i = 1;
public static void main(String[] args) {
Fish k = new Fish();
k.i = 2; // it IS possible
}
}