Author
Simple question
suresh kamsa
Ranch Hand
Joined: Jul 30, 2001
Posts: 149
posted Jun 07, 2002 09:28:00
0
How do I make this code compile? I am getting Illegal start of expression at statement public void int add(int N) Thanks in advance. [ June 07, 2002: Message edited by: Dirk Schreckmann ]
Corey McGlone
Ranch Hand
Joined: Dec 20, 2001
Posts: 3271
Originally posted by suresh kamsa:
Most Java methods only have 1 return type, not 2.
SCJP Tipline, etc.
suresh kamsa
Ranch Hand
Joined: Jul 30, 2001
Posts: 149
posted Jun 07, 2002 09:37:00
0
How do I make that programe compile error free? I change it to public int adder(int N) still same error
Corey McGlone
Ranch Hand
Joined: Dec 20, 2001
Posts: 3271
You also probably want to take the method decalaration out of the main method. You can't have a method within a method. Here, this will compile: I'm moving this to JiG (Beginner) Corey [ June 07, 2002: Message edited by: Corey McGlone ]
awais syed
Greenhorn
Joined: Mar 17, 2002
Posts: 7
because you can not declare method in any method. but you call this like [ June 08, 2002: Message edited by: Dirk Schreckmann ]
awais
subject: Simple question