Results 1 to 5 of 5
Thread: Constructors Trouble
- 02-28-2013, 12:14 AM #1
Member
- Join Date
- Feb 2013
- Posts
- 3
- Rep Power
- 0
Constructors Trouble
Hi,
I followed this tutorial and I have no idea what Im doing.
I have got this code : [Java] //line 8, 11, 14 are erroring in eClipse. Can you figure out why? private int - Pastebin.com And line 8, 11 adn 14 are erroring. I have no idea why that is. Can you guys maybe explain me what he is doing here and resolve my code?
Thank you,
LearninTOprogram
- 02-28-2013, 12:29 AM #2
Senior Member
- Join Date
- Oct 2010
- Posts
- 316
- Rep Power
- 3
Re: Constructors Trouble
Hi, welcome to the forums.
Constructors do not require a return type. For example, the error on line 8 is actually being caused by an error on line 6 which should read as follows.
Regards.Java Code:public newClass(){ // note the missing return type.
- 02-28-2013, 12:42 AM #3
Member
- Join Date
- Feb 2013
- Posts
- 3
- Rep Power
- 0
Re: Constructors Trouble
Thanks for the response, I have changed it to this and is it correct? public class secondClass { private int hour; private int minute; private i - Pastebin.com
At this point the 'this' command is giving me errors. It gives me the error in eClipse: Constructor call must be first statement in a constructor. I am not quite sure what to do.
Thanks
- 02-28-2013, 04:08 AM #4
Re: Constructors Trouble
When asking for help on a forum, post the code, properly wrapped with code tags*
Don't expect members here to click external links just to see what you're doing wrong.
db
* Guide For New Members
BB Code List - Java Programming Forum - Learn Java ProgrammingWhy do they call it rush hour when nothing moves? - Robin Williams
- 02-28-2013, 08:42 AM #5
Senior Member
- Join Date
- Oct 2010
- Posts
- 316
- Rep Power
- 3
Similar Threads
-
Help with constructors
By Modulus in forum New To JavaReplies: 2Last Post: 02-11-2013, 01:12 AM -
Constructors
By cups in forum New To JavaReplies: 1Last Post: 02-15-2012, 11:55 AM -
Constructors
By EdOBannon in forum Advanced JavaReplies: 2Last Post: 12-15-2011, 11:05 AM -
constructors?
By shroomiin in forum New To JavaReplies: 4Last Post: 10-13-2009, 02:14 PM -
Help with constructors
By Minime in forum New To JavaReplies: 3Last Post: 04-09-2008, 07:59 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks