me_digvijay
me_digvijay

Reputation: 5502

What happens to the JFilechooser object when open/cancel is pressed

What happens to the JFileChooser object when the open or cancel button is pressed in java. Does the object still exist or is destroyed?

Upvotes: 1

Views: 112

Answers (1)

MByD
MByD

Reputation: 137442

If you still has a reference to it, it exists, otherwise, it will be destroyed at some point by the GC.

Upvotes: 2

Related Questions