Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is Interface?

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


Please Help Members By Posting Answers For Below Questions

Name few java 8 annotations ?

1027


What happens when a thread cannot acquire a lock on an object in java programming?

1016


Does google use java?

964


When should I use a singleton?

1049


What are computer functions?

945


What are new features introduced with java 8 ?

995


What is file in java?

1033


design an lru cache in java?

1005


What is methodological framework?

1045


What is number data type in java?

1013


What is a numeric digit?

1086


Explain scope or life time of local variables in java?

1027


What is the difference between comparison done by equals method and == operator?

1026


Explain the use of volatile field modifier?

1080


What is constructor chaining and how is it achieved in java?

1154