Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In below code i'm doing somthing wrong. Sorry if this is a bit basic. I get this working fine if it's all in the one class but not when i break the classes up like in the code below:

class Apples{
    public static void main(String[] args){

        String bucket = "green"; //instance variable

        Apples appleOne = new Apples(); //create new object (appleOne) from Apples class

        System.out.println("Paint apple one: " + appleOne.paint(bucket));
        System.out.print("bucket still filled with:" + bucket);

        }//end main

    }//end class

class ApplesTestDrive{

    public String paint(String bucket){

        bucket = "blue"; //local variable
        return bucket;

        }//end method

    }//end class

Error Message:

location:class Apples
cannot find symbol
pointing to >> appleOne.paint(bucket)

Any hints?

share|improve this question
1  
What errors are you getting? – EricBoersma Oct 1 '10 at 15:09
@EricBoersma, it's there at the bottom, but I edited the question now to make it stand out. – Kirk Woll Oct 1 '10 at 15:11

3 Answers

up vote 6 down vote accepted

You need to create an instance of ApplesTestDrive, not Apples. The method is in there.

So, instead of

Apples appleOne = new Apples();

do

ApplesTestDrive appleOne = new ApplesTestDrive();

This has nothing to do with passing by reference (so I removed the tag from your question). It's just a programmer error (as practically all compilation errors are).

share|improve this answer
@all thank you very much for putting me on the right track. your help is very valuable to me! Thanks again. – raoulbia Oct 1 '10 at 15:27
You're welcome. – BalusC Oct 1 '10 at 15:33

You are calling the method paint on Apple object BUT the paint method is in AppleTestDrive class.

Use this code instead:

AppleTestDrive apple = new AppleTestDrive();
apple.paint(bucket);
share|improve this answer

System.out.println("Paint apple one: " + appleOne.paint(bucket)); paint is a method of ApplesTestDrive class and appleOne is an Apples objject, so you can't call appleOne.paint here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.