access$1900

M

Michaelp

Hello!

I am debugging a project that I inherited from someone else.
The run aborts with an exception stack, of which one is access$1900.

What can this mean?

I do not find any reference to a method named access in the entire api
documentation.

Thanks

Michael
 
W

Wojtek

Michaelp wrote :
Hello!

I am debugging a project that I inherited from someone else.
The run aborts with an exception stack, of which one is access$1900.

What can this mean?

I do not find any reference to a method named access in the entire api
documentation.

Thanks

Michael

Google kicks out 265 pages for access$1900
 
J

Joshua Cranmer

Michaelp said:
Hello!

I am debugging a project that I inherited from someone else.
The run aborts with an exception stack, of which one is access$1900.

What can this mean?

I do not find any reference to a method named access in the entire api
documentation.

Thanks

Michael

access$1900 is a synthetic method that is used so that inner classes can
use the private variables of its respective outer class. If you want to
figure out which variable it is accessing, you can run `javap -c [fully
qualified class name]` and then find the output for the method access$1900.
 
M

Mike Schilling

Michaelp said:
Hello!

I am debugging a project that I inherited from someone else.
The run aborts with an exception stack, of which one is access$1900.

What can this mean?

Probably that it's a generated method used to access a private field (or
method) of an inner class.
 
M

Michaelp

Thanks, Wojtek :)

Found those too.

At least the first 20 of them have it as a part of a pasted stack-
trace.

Michael :)
 
R

Roedy Green

I am debugging a project that I inherited from someone else.
The run aborts with an exception stack, of which one is access$1900.

What can this mean?

Let's see the rest of the stack dump.
 
R

rossum

Hello!

I am debugging a project that I inherited from someone else.
The run aborts with an exception stack, of which one is access$1900.

What can this mean?

I do not find any reference to a method named access in the entire api
documentation.

Thanks

Michael

How do I fit "There I was expecting to get $1900 paid into my new
PayPal account when I signed up to your new sure-fire money making
scheme, and all I got was this lousy Java technical question." onto my
T-shirt? :)

rossum
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,680
Members
48,796
Latest member
Greg L.

Latest Threads

Top