Ed Mandera

Greenhorn
+ Follow
since Jan 27, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Ed Mandera

Anamika Sheoran wrote:Hey...

Is K&B 7 is in the stores or still awaited...??



Amazon is now listing the publication date as February 4, 2013:

http://www.amazon.com/Programmer-Study-Guide-1Z0-803-Certification/dp/0071772006/ref=wl_it_dp_o_pdT1_nS_nC?ie=UTF8&colid=7S0RJ9CS4ML6&coliid=I2FK1CONPJK67N

Ed

Anamika Sheoran wrote:Hey...

Is K&B 7 is in the stores or still awaited...??



Amazon is now listing the publication date as February 4, 2013:

http://www.amazon.com/Programmer-Study-Guide-1Z0-803-Certification/dp/0071772006/ref=wl_it_dp_o_pdT1_nS_nC?ie=UTF8&colid=7S0RJ9CS4ML6&coliid=I2FK1CONPJK67N

Ed
"-classpath /Users/bert/Applications2/tomcat/common/lib/servlet-api.jar:classes:." sets the classpath to include servlet-api.jar, all the class files in the classes directory structure, and all the class files in the current directory.

The colon is the delimiter for classpath entries.

Hope this helps!

Ed
Nathaniel,
I thought the way this worked is that protected members can be accessed in all cases where default members can be accessed (when the accessing member belongs to the same package) AND via a subclass through inheritance.
From the language specification, a few lines above where you linked:
... if the member or constructor is declared protected, then access is permitted only when one of the following is true:
- Access to the member or constructor occurs from within the package containing the class in which the protected member or constructor is declared.
- Access is correct as described in �6.6.2.