I am fairly new to java and was wondering, if I had a two classes as follows:
public class Class {
char[][] charArray = new charArray[100[10];
}
class OtherClass extends Class {
}
Would the OtherClass class be able to access charArray? If so, how do you do it?