assign outer class variable a value from inner class
Ronnie Phelps
Ranch Hand
Joined: Mar 12, 2001
Posts: 329
posted
0
how can I assign an outer class variable a value while I'm in the inner class... this.name = "whatever" doesn't work because this refers to the inner class.
If the variable is global, you don't have to do anything but assign the variable. The inner class knows about the outer class variables.
Barry
Ilja Preuss
author
Sheriff
Joined: Jul 11, 2001
Posts: 14112
posted
0
Originally posted by Ronnie Phelps: how can I assign an outer class variable a value while I'm in the inner class... this.name = "whatever" doesn't work because this refers to the inner class.
use OuterClassName.this.name = "whatever"
The soul is dyed the color of its thoughts. Think only on those things that are in line with your principles and can bear the light of day. The content of your character is your choice. Day by day, what you do is who you become. Your integrity is your destiny - it is the light that guides your way. - Heraclitus
Ronnie Phelps
Ranch Hand
Joined: Mar 12, 2001
Posts: 329
posted
0
Ilja that worked...Thanks!!!
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: assign outer class variable a value from inner class