Results 1 to 2 of 2
Thread: Still cannot find symbol!
- 11-04-2010, 04:29 PM #1
Senior Member
- Join Date
- Oct 2010
- Posts
- 139
- Rep Power
- 0
Still cannot find symbol!
Hi, I tried to let one of my classes call another class and it gave me a can not find symbol error. What it is suppose to do is when you click on the calculator button it must call another class that is a calculator. Here is the calculator button:
private void SakrekenaarMouseClicked(MouseEvent e)
{
Calculator cal = new Calculator("Java Swing Calculator");
}
Here is the error that it gave me:
Lone.java:439: cannot find symbol
symbol : constructor Calculator(java.lang.String)
location: class Calculator
Calculator cal = new Calculator("Java Swing Calculator");
^
Then somebody gave a piece of code to fix the problem. Here is the code and his instructions:
Ah now I see it. Your constructor does not contain a String parameter therefore it cannot identify the constructor, since you passed a string parameter to it.
Replace your constructor header with this
Code:
public Calculator(String param){//Code}
But this only gave me another error in the calculator class:
Calculator.java:569: cannot find symbol
symbol : constructor Calculator()
location: class Calculator
Calculator calci = new Calculator();
^
1 error
Please somebody help me...:(
- 11-04-2010, 04:32 PM #2
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
Please don't post the same question multiple times. Stick with a one.
Similar Threads
-
Cannot find symbol
By Johanis in forum New To JavaReplies: 19Last Post: 11-04-2010, 08:13 PM -
Can not find symbol ???
By AliceNewbie in forum New To JavaReplies: 1Last Post: 02-17-2010, 01:44 AM -
cannot find symbol
By GabWit in forum New To JavaReplies: 3Last Post: 01-25-2009, 12:13 AM -
cannot find symbol symbol :constructor Error. Please help! =(
By KalEl in forum New To JavaReplies: 9Last Post: 10-18-2008, 08:26 PM -
cannot find symbol symbol : class Item location: package platypos.services.order
By officialhopsof in forum New To JavaReplies: 3Last Post: 05-01-2008, 08:30 AM


LinkBack URL
About LinkBacks

Bookmarks