Home > Java Programming > Interface > Questions and Answers
Q: |
Interface A {} Class B{ Public final static void test(){ System.out.println(“testâ€); } } Class C extends B implements A{ Public static void main(String args[]){ New C().test(); C.test(); } } | ||||||||||
|
Comment on this Question | |
Name: | |
|