What will happen if there is a default method conflict as mentioned above and we have specified the same signature method in the base class instead of overriding in the existing class ?
No Answer is Posted For this Question
Be the First to Post Answer
Are strings immutable in java?
what is meant by encapsulation?
What are the differences between Java 1.0 and Java 2.0?
solve this is my problem byte a=40,byte b=50 both add value is 90 this is with in range of byte... byte range is -128to 127.... why this pgm gives error like type mismatch.... package javapgms; public class byte1 { public static void main(String args[]) { byte a=40,b=50; byte c=a+b; System.out.println(c); } } note : dont use int k... a,b,c are in byte range... mind it..
List implementations of list interface?
Can an interface be defined inside a class?
What is thread?
Can a boolean be null java?
Is ++ operator thread-safe in java?
What is identifier in java?
Can we have more than one package statement in the source file?
Why java is object oriented?