Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search Coderanch
Advance search
Google search
Register / Login
Jayakumar OP
Greenhorn
+ Follow
news
1
Posts
1
Threads
since Mar 04, 2004
Merit badge:
grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads
Recent posts by Jayakumar OP
Interfaces
Please have a look at the below code. Could you let me know which interface method "test" is implemented
interface i1{ public void test() ; } interface i2{ public void test() ; } class t1 implements i1, i2{ public void test(){ System.out.println("test method") ; } } public class test { public static void main(String args[]){ t1 ext1 = new t1() ; ext1.test() ; } }
Edited by Corey McGlone:
Added CODE Tags
[ March 11, 2004: Message edited by: Corey McGlone ]
show more
20 years ago
Programmer Certification (OCPJP)