interface A
{
public boolean bA=true;
public boolean bB=true;
public boolean bC=true;
}
interface B extends A
{
boolean bA=false;/*(here bA i think is ambiguous how does compiler know which value to take )*
}
class C implements B
{
public void printbool()
{
System.out.println("bA="+bA);
System.out.println("bB="+bB);
}
}
public class demointerface implements B{
public static void main(String []args)
{
C c=new C();
c.printbool();
}
}
/*here OUTPUT is as follows
bA=false
bB=true
BUILD SUCCESSFUL (total time: 1 second)
*/
fsl4faisal -4 Newbie Poster
NP-complete 42 Junior Poster
JamesCherrill 4,733 Most Valuable Poster Team Colleague Featured Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.