jQuery in Action, 2nd edition
The moose likes Beginning Java and the fly likes Erroneous sym type What does this mean? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Erroneous sym type What does this mean?" Watch "Erroneous sym type What does this mean?" New topic
Author

Erroneous sym type What does this mean?

Lynn Marciniak
Greenhorn

Joined: Sep 04, 2011
Posts: 7

I have been working on this for days now, and can't figure out what I am doing wrong. I have to use the following for my method I am trying to call from main public static void sort(double num1, double num2, double num3)


If I take out the method that I have to include, it runs just fine, so I know that I have issues with the way I am handling the method.

[Edit: added code tabs - MB]
fred rosenberger
lowercase baba
Bartender

Joined: Oct 02, 2003
Posts: 9955
    
    6

when you CALL a method, you don't have to give it the parameter types. Change line 19 to this:



Never ascribe to malice that which can be adequately explained by stupidity.
Jian Shen
Greenhorn

Joined: Dec 02, 2010
Posts: 3
Hi,

The code looks fine except the sort method call:


You need to declare variable type only when define a method. So the calling code should be:
Lynn Marciniak
Greenhorn

Joined: Sep 04, 2011
Posts: 7

Thank you! I can't believe it was so simple!
fred rosenberger
lowercase baba
Bartender

Joined: Oct 02, 2003
Posts: 9955
    
    6

it's always simple if you know what it is...

Just mark this off as one more thing you've learned, and (hopefully) won't make again. I can't begin to tell you how long my list of mistakes like this I've made is.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Erroneous sym type What does this mean?
 
Similar Threads
Triangle Perimeter HELP!!!
Problem with Sort Method
[HOMEWORK] Please need help with java project
Integer Object Comparision Confusion
Need help with Overloading Methods