• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

can we instantiate interfaces

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
This is a qtn fro marcus exam2
Which of the following statements are true?
1) Adding more classes via import statements will cause a performance overhead, only import classes you actually use.
2) Under no circumstances can a class be defined with the private modifier
3) A inner class may under some circumstances be defined with the protected modifier
4) An interface cannot be instantiated
Answer is 3 and 4
I think we can instantiate interfaces with the help of anonymous classes.
Please clear my doubt
Bye
rohan
 
Ranch Hand
Posts: 290
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
No, u cannot instantiate interfaces.
 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Which of the following statements are true?
1) Adding more classes via import statements will cause a performance overhead, only import classes you actually use.
2) Under no circumstances can a class be defined with the private modifier
3) A inner class may under some circumstances be defined with the protected modifier
4) An interface cannot be instantiated
Answer is 3 and 4
I think we can instantiate interfaces with the help of anonymous classes.
Please clear my doubt
hi Rohan ,
we cant instantiate interface at all,
because it has no constructor .....we can make reference of it.....
..... now what is ur doubt is about Anonymous class ....there
we make an instance of a class which ...imlements
that interface........so that insance is of that class not
of the interface.....
bye dheeraj
 
Ranch Hand
Posts: 61
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Rohan.
As Dheeraj and Nitin pointed out, we can not instantiate interfaces. In case of anonymous class we are instantiating a class (anonymous) which implements the interface.
cheers
Gaurav Mantro
------------------
http://www.mantrotech.com
reply
    Bookmark Topic Watch Topic
  • New Topic