Related Questions

In Java, can a subclass access package-private members (fields and methods) of its superclass defined in another package?
In the following Java code, what can directly access and change the value of the variable name?
package test;class Target { public String name = "hello";}