Gyutae Kim

Greenhorn
+ Follow
since Aug 07, 2002
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 Gyutae Kim

i really wanna take the scwcd before school starts for me so i was just curious on how hard is it? i have a basic understanding of everything and right now i am working on memorizing all the methods and xml tag info. i score consistently at over 70% on the javaranch practice scwcd exam do you think thats enough to pass the real thing?
i have a piece of code that looks like this
abstract public class super
{
public void meth(){absMeth();}
abstract void absMeth();
}
public class sub extends super
{
protected void absMeth(){print something}
}
then when i run the meth method of sub nothing gets printed out shouldnt this work?
[ August 07, 2002: Message edited by: Gyutae Kim ]
[ August 07, 2002: Message edited by: Gyutae Kim ]
21 years ago