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.
The moose likes Java in General and the fly likes please help me Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "please help me" Watch "please help me" New topic
Author

please help me

VIGNESHWAR VISWANATHAN
Greenhorn

Joined: May 26, 2007
Posts: 17
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
Michael Dunn
Ranch Hand

Joined: Jun 09, 2003
Posts: 4632
the compiler tells you what is wrong.



are there some parts you do not understand?
Burkhard Hassel
Ranch Hand

Joined: Aug 25, 2006
Posts: 1274
Howdy, cowboys!

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.


Yours,
Bu.


all events occur in real time
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: please help me
 
Similar Threads
constructing object dynamicaly
Inner class and this ?
JOptionPane - showInputDialog
cannot find symbol class Dog
variables not found with OOP