If i have the following scenario:
public class Foo extends Baz{
private String banana = "banana";
//blah blah blah
}
public class Baz{
protected static String apple = "apple";
}
Which get created first, apple or banana? I want to say apple gets created first, but I am not sure.
appleto be a static variable rather than an instance variable, or not?