Answer Posted / tarun
In java Interface provides the definition of methods and
final variables. The variables can be declared as final or
not but its can not be changed or modified again. valiable
value can be decide only at the time of declaration.
for more clearance please go through the example given below.
// declaring an interface
public interface MyInterface {
public static final int y = 9;
public void service();
public int method();
public abstract void newmethod();
}
// implementing an interface by a class
public class Class1 implements MyInterface{
/**
* @param args
*/
public Class1(){
System.out.println(y);
}
public void service(){};
int i =9;
public int method(){
final int q = 10;
return q;
}
public void newmethod(){
System.out.println("Tarun");
}
public static void main(String[] args) {
// TODO Auto-generated method stub
Class1 c1 = new Class1();
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What's the base class in java from which all classes are derived?
What do you mean by constant time complexity?
What is the full form of jpeg?
Name some classes present in java.util.regex package.
What is the difference between class & structure?
What are the basic interfaces of java collections framework?
Is static a singleton?
Which list is sorted in java?
What is output buffer?
What is operator overloading. Is it is supported in java?
What makes a function well defined?
What is purpose of find feature?
Why declare Main() method as a static in java ?
What is stored procedure. How do you create stored procedure ?
String and stringbuffer both represent string objects. Can we compare string and stringbuffer in java?