Answered Questions

  • What is the difference between native and abstract

    what is the difference between native and abstract?can we declare a method as native inside an interface?if yes then why? if no then why not?

    Sunil Pratap Singh

    • Nov 14th, 2006

    Native keyword is prefixed with method name when we want that method to be implemented using a native language like c and c++. So in the class we only declare the method and the defination of the meth...