Results 1 to 5 of 5
Thread: Need Help - Beginner
- 08-08-2010, 12:04 AM #1
Member
- Join Date
- Aug 2010
- Posts
- 2
- Rep Power
- 0
Need Help - Beginner
Thanks for reading this people. Whenever i try compiling this:
Java Code:public class HelloApp2 { public static void main (String[] args) { Greeter myGreeterObject = new Greeter(); myGreeterObject.sayHello(); } }
It always gives me 2 errors saying HelloApp2:java:10 cannot find symbol
Please help me i've been stuck on this for hours.Last edited by Fubarable; 08-08-2010 at 12:21 AM. Reason: Moderator Edit: Code tags added
-
When posting error messages, it's always best to post the exact error message.
I'm guessing though it's the line with Greeter stuff on it. Have you created a Greeter class yet? Does it compile correctly?
edit: also, I added code tags to your post. To learn how this is done, please see the link in my signature about this.
Luck!
- 08-08-2010, 12:23 AM #3
Member
- Join Date
- Jul 2010
- Posts
- 5
- Rep Power
- 0
Well, if you think that it is enough to create an object of the class which doesn't exist and call non existing method and expect something good to happen, then you are certainly wrong(if you don't missed some code here).
Java Code:public class HelloWorld { public static void main(String[] args) { Greeter myGreeterObject = new Greeter(); myGreeterObject.sayHello(); } } [COLOR="Red"]class Greeter { void sayHello() { System.out.println("Hello, Java"); } }[/COLOR]
- 08-08-2010, 01:07 AM #4
Member
- Join Date
- Aug 2010
- Posts
- 2
- Rep Power
- 0
Ty for replies, i made a greeter class now, and it compiled perfectly. Then i tried recompiling my same code, and it worked! Thanks a lot for your help. Btw, i'll be posting here when i have more problems if you dont mind :S. I'm only 14, i'm just trying to learn.
- 08-08-2010, 04:22 AM #5
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
Similar Threads
-
Beginner, need a little help
By jimmy-lin in forum New To JavaReplies: 6Last Post: 10-10-2009, 01:00 AM -
beginner here...help please
By shroomiin in forum New To JavaReplies: 6Last Post: 09-15-2009, 11:06 PM -
Beginner needs help!
By Polyy in forum New To JavaReplies: 1Last Post: 11-27-2008, 05:12 AM -
almost done...beginner needs help plz..
By shongo in forum New To JavaReplies: 15Last Post: 11-10-2008, 08:14 AM -
beginner needs help with OBD-II input
By andrewos in forum New To JavaReplies: 3Last Post: 07-30-2007, 09:46 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks