This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
public final class Flaw { int age=7; String name="Bala"; } class Dflaw extends Flaw { public int method() { System.out.println("Enter the age=" + age); System.out.println("Enter the String="
+name); }} public static void main(String[] args) { Flaw f=new Flaw; f.age; f.name; } I do not know what is wrong in this ..please post
First, class Flaw must not be final. Otherwise it cannot be extended.
Second, there are several brackets }} at the wrong places. To avoid this, use propper indentation of your code. The indentation is visible on the Ranch only if you use the - tag when posting. Do this.
Third: method method is declared to return an int but doesn't.
Number four, with f.name and f.age you are referring to variables but you don't assign anything to it. This is also not possible.
Number five: Your user name should not be in uppercase letters.
By the way: The compiler only shows one error in the first place (15: 'class' or 'interface' expected). This cryptic message comes from one of the misplaced brackets in the line before. If you remove this error and resave, compiler will tell you more errors.