Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search Coderanch
Advance search
Google search
Register / Login
Huang Jin-Ting
Greenhorn
+ Follow
news
1
Posts
1
Threads
since Mar 15, 2004
Merit badge:
grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads
Recent posts by Huang Jin-Ting
How can I let this context to be run?
class Point { static int x = 2; } class Test extends Point { static double x = 4.7; public static void main(String[] args) { new Test().printX(); } void printX() { System.out.println(x + " " + super.x); } }
[ edited to preserve formatting using the [code] and [/code]
UBB tags
-ds ]
[ April 07, 2004: Message edited by: Dirk Schreckmann ]
show more
21 years ago
Beginning Java