Adam Borowski

Greenhorn
+ Follow
since Nov 22, 2011
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 Adam Borowski

Hello Ganesan,
Ok we now know what is OCA Java 7, but what is the better option? Should we choose two exams Java OCAJ 7 and OCPJ 7 instead of one exam OCPJ 6? What is your opinion?
12 years ago
Hello Ganesan,
Is it better to prepare from the Training Lab than the book and why?
Hello,
How much time is needed to learn the material for OCA Java 7? What learning materials are available?
Write your code, compile it, then use "javap" with command "-c" to disassemble your java bytecode. You will see what java do with your String objects and how many are created.

Example:
javap -cp c:\myjava\stringtest\ StringTest

where c:\myjava\stringtest\ is classpath location, and StringTest is class name.