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

Edited: I need to change the values of several variables as they run several times thorugh a timer. I need to keep updating the values with every iteration through the timer. I cannot set the values to final as that will prevent me from updating the values however I am getting the error I describe in the initial question below:

I had previously written what is below:

I am getting the error "cannot refer to a non-final variable inside an inner class defined in a different method".

This is happening for the double called price and the Price called priceObject. Do you know why I get this problem. I do not understand why I need to have a final declaration. Also if you can see what it is I am trying to do, what do I have to do to get around this problem.

public static void main(String args[]) {

    int period = 2000;
    int delay = 2000;

    double lastPrice = 0;
    Price priceObject = new Price();
    double price = 0;

    Timer timer = new Timer();

    timer.scheduleAtFixedRate(new TimerTask() {
        public void run() {
            price = priceObject.getNextPrice(lastPrice);
            System.out.println();
            lastPrice = price;
        }
    }, delay, period);
}
share|improve this question
What I am asking is, how do I get a variable in a timer that I can continuously update. – Ankur Aug 19 '09 at 13:22
1  
@Ankur: the simple answer is "No". But you can achieve the desired effect using an inner class; see @petercardona's answer. – Stephen C Aug 19 '09 at 13:45

12 Answers

up vote 57 down vote accepted

Java doesn't support true closures, even though using an anonymous class like you are using here (new TimerTask() { ... }) looks like a kind of closure.

edit - See the comments below - the following is not a correct explanation, as KeeperOfTheSoul points out.

This is why it doesn't work:

The variables lastPrice and price are local variables in the main() method. The object that you create with the anonymous class might last until after the main() method returns.

When the main() method returns, local variables (such as lastPrice and price) will be cleaned up from the stack, so they won't exist anymore after main() returns.

But the anonymous class object references these variables. Things would go horribly wrong if the anonymous class object tries to access the variables after they have been cleaned up.

By making lastPrice and price final, they are not really variables anymore, but constants. The compiler can then just replace the use of lastPrice and price in the anonymous class with the values of the constants (at compile time, ofcourse), and you won't have the problem with accessing non-existent variables anymore.

Other programming languages that do support closures do it by treating those variables specially - by making sure they don't get destroyed when the method ends, so that the closure can still access the variables.

@Ankur: You could do this:

public static void main(String args[]) {
    int period = 2000;
    int delay = 2000;

    Timer timer = new Timer();

    timer.scheduleAtFixedRate(new TimerTask() {
        // Variables as member variables instead of local variables in main()
        private double lastPrice = 0;
        private Price priceObject = new Price();
        private double price = 0;

        public void run() {
            price = priceObject.getNextPrice(lastPrice);
            System.out.println();
            lastPrice = price;
        }
    }, delay, period);      
}
share|improve this answer
13  
Not quite true, Java does generate captures for the variables in question to capture their run-time values, its just they wanted to avoid a strange side-effect that is possible in .Net where by you capture the value in the delegate, change the value in the outer method, and now the delegate sees the new value see, stackoverflow.com/questions/271440/c-captured-variable-in-loop for the C# example of this behaviour that Java aims to avoid. – Chris Chilvers Aug 19 '09 at 13:29
1  
It captures the value somewhere, even if its just in a private hidden field of the anonymous class, as the actual values can be computed at runtime rather than compile time, which wouldn't be possible with an actual constant. – Chris Chilvers Aug 19 '09 at 13:40
4  
That's not a "strange side-effect", it's the normal behaviour people would expect - and which Java cannot deliver because it does not generate captures. As a workaround, local variables used in an anonymous class must be final. – Michael Borgwardt Aug 19 '09 at 13:42
3  
True, "constant" is not the correct expression (but neither is IMO "capture"). The Anonymous class object simply gets a copy of the value. – Michael Borgwardt Aug 19 '09 at 13:44
2  
It's amazing the number of people using C# that don't expect that, I guess when Sun were choosing how to capture variables they decided to avoid that by enforcing the variables be final, which is rather annoying and leads to requiring wrapper objects to get the same effect. – Chris Chilvers Aug 19 '09 at 13:44
show 6 more comments

To avoid strange side-effects with closures in java variables referenced by an anonymous delegate must be marked as final, so to refer to lastPrice and price within the timer task they need to be marked as final.

This obviously won't work for you because you wish to change them, in this case you should look at encapsulating them within a class.

public class Foo
{
    private PriceObject priceObject;
    private double lastPrice;
    private double price;

    public Foo(PriceObject priceObject)
    {
        this.priceObject = priceObject;
    }

    public void tick()
    {
        price = priceObject.getNextPrice(lastPrice);
        lastPrice = price;
    }
}

now just create a new Foo as final and call .tick from the timer.

public static void main(String args[]){
    int period = 2000;
    int delay = 2000;

    Price priceObject = new Price();
    final Foo foo = new Foo(priceObject);

    Timer timer = new Timer();
    timer.scheduleAtFixedRate(new TimerTask() {
        public void run() {
        foo.tick();
        }
    }, delay, period);
}
share|improve this answer

You can only access final variables from the containing class when using an anonymous class. Therefore you need to declare the variables being used final (which is not an option for you since you are changing lastPrice and price), or don't use an anonymous class.

So your options are to create an actual inner class, in which you can pass in the variables and use them in a normal fashion

or:

There is a quick (and in my opinion ugly) hack for your lastPrice and price variable which is to declare it like so

final double lastPrice[1];
final double price[1];

and in your anonymous class you can set the value like this

price[0] = priceObject.getNextPrice(lastPrice[0]);
System.out.println();
lastPrice[0] = price[0];
share|improve this answer

Good explanations for why you can't do what you're trying to do already provided. As a solution, maybe consider:

public class foo
{
    static class priceInfo
    {
    	public double lastPrice = 0;
    	public double price = 0;
    	public Price priceObject = new Price ();
    }

    public static void main ( String args[] )
    {

    	int period = 2000;
    	int delay = 2000;

    	final priceInfo pi = new priceInfo ();
    	Timer timer = new Timer ();

    	timer.scheduleAtFixedRate ( new TimerTask ()
    	{
    		public void run ()
    		{
    			pi.price = pi.priceObject.getNextPrice ( pi.lastPrice );
    			System.out.println ();
    			pi.lastPrice = pi.price;

    		}
    	}, delay, period );
    }
}

Seems like probably you could do a better design than that, but the idea is that you could group the updated variables inside a class reference that doesn't change.

share|improve this answer

I just wrote something to handle something along the authors intention. I found the best thing to do was to let the constructor take all the objects and then in your implemented method use that constructor objects.

However, if you are writing a generic interface class, then you have to pass an Object, or better a list of Objects. This could be done by Object[] or even better, Object ... because it is easier to call.

See my example piece just below.

List<String> lst = new ArrayList<String>();
lst.add("1");
lst.add("2");        

SomeAbstractClass p = new SomeAbstractClass (lst, "another parameter", 20, true) {            

    public void perform( ) {                           
        ArrayList<String> lst = (ArrayList<String>)getArgs()[0];                        
    }

};

public abstract class SomeAbstractClass{    
    private Object[] args;

    public SomeAbstractClass(Object ... args) {
        this.args = args;           
    }      

    public abstract void perform();        

    public Object[] getArgs() {
        return args;
    }

}

Please see this post about Java closures that supports this out of the box: http://mseifed.blogspot.se/2012/09/closure-implementation-for-java-5-6-and.html

Version 1 supports passing of non-final closures with autocasting:
https://github.com/MSeifeddo/Closure-implementation-for-Java-5-6-and-7/blob/master/org/mo/closure/v1/Closure.java

    SortedSet<String> sortedNames = new TreeSet<String>();
    // NOTE! Instead of enforcing final, we pass it through the constructor
    eachLine(randomFile0, new V1<String>(sortedNames) {
        public void call(String line) {
            SortedSet<String> sortedNames = castFirst();  // Read contructor arg zero, and auto cast it
            sortedNames.add(extractName(line));
        }
    });
share|improve this answer
Updated the answer – Hamidam Nov 9 '12 at 17:44

You cannot refer to non-final variables because Java Language Specification says so. From 8.1.3:
"Any local variable, formal method parameter or exception handler parameter used but not declared in an inner class must be declared final." Whole paragraph.
I can see only part of your code - according to me scheduling modification of local variables is a strange idea. Local variables cease to exist when you leave the function. Maybe static fields of a class would be better?

share|improve this answer

Because it's confusing if the variable isn't final, as the changes to it won't be picked up in the anonymous class.

Just make the variables 'price' and 'lastPrice' final.

-- Edit

Oops, and you'll also need to not assign to them, obviously, in your function. You'll need new local variables. Anyway, I suspect someone has given you a better answer by now.

share|improve this answer
1  
its not just confusing - its downright incorrect, thus the compiler does not allow it. – Chii Aug 19 '09 at 13:19
But then how do I change the values when I need to? – Ankur Aug 19 '09 at 13:20
Not just because it's confusing; this is because Java doesn't support closures. See my answer below. @Ankur: You could make the variables member variables of the anonymous class object instead of local variables in main(). – Jesper Aug 19 '09 at 13:25
He is modifying them, so they cannot be final. – Robin Aug 19 '09 at 13:26
If price and lastPrice were final, the assignments to them would not compile. – Greg Mattes Aug 19 '09 at 13:26
show 2 more comments

If the variable required to be final, cannot be then you can assign the value of the variable to another variable and make THAT final so you can use it instead.

share|improve this answer

When I stumble upon this issue, I just pass the objects to the inner class through the constructor. If I need to pass primitives or immutable objects (as in this case), a wrapper class is needed.

Edit: Actually, I don't use an anonymous class at all, but a proper subclass:

public class PriceData {
    	private double lastPrice = 0;
    	private double price = 0;

    	public void setlastPrice(double lastPrice) {
    		this.lastPrice = lastPrice;
    	}

    	public double getLastPrice() {
    		return lastPrice;
    	}

    	public void setPrice(double price) {
    		this.price = price;
    	}

    	public double getPrice() {
    		return price;
    	}
    }

    public class PriceTimerTask extends TimerTask {
    	private PriceData priceData;
    	private Price priceObject;

    	public PriceTimerTask(PriceData priceData, Price priceObject) {
    		this.priceData = priceData;
    		this.priceObject = priceObject;
    	}

    	public void run() {
    		priceData.setPrice(priceObject.getNextPrice(lastPrice));
    		System.out.println();
    		priceData.setLastPrice(priceData.getPrice());

    	}
    }

    public static void main(String args[]) {

    	int period = 2000;
    	int delay = 2000;

    	PriceData priceData = new PriceData();
    	Price priceObject = new Price();

    	Timer timer = new Timer();

    	timer.scheduleAtFixedRate(new PriceTimerTask(priceData, priceObject), delay, period);
    }
share|improve this answer

Can you make lastPrice, priceObject, and price fields of the anonymous inner class?

share|improve this answer

To solve the problem above, different languages make different decisions.

for Java, the solution is as what we see in this article.

for C#, the solution is allow side-effects and capture by reference is the only option.

for C++11, the solution is to allow the programmer make the decision. They can choose to capture by value or by reference. If capturing by value, no side-effects would occur because the variable referenced is actually different. If capture by reference, side-effects may occur but the programmer should realize it.

share|improve this answer

If you want to change a value in a method call within an anonymous class, that "value" is actually a Future. So, if you use Guava, you can write

...
final SettableFuture<Integer> myvalue = SettableFuture<Integer>.create();
...
someclass.run(new Runnable(){

    public void run(){
        ...
        myvalue.set(value);
        ...
    }
 }

 return myvalue.get();
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.