Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / General / November 2005

Tip: Looking for answers? Try searching our database.

How to copy value of class to another?

Thread view: 
Raous - 11 Nov 2005 22:18 GMT
I want to sort an array of classes.

So I need to exchange the value of class in this way:

 tmp = a;
 a = b;
 b = tmp;

However, I know that this is not copying the value of class.

Could anyone tell me how to copy the value of class?
Knute Johnson - 11 Nov 2005 22:30 GMT
> I want to sort an array of classes.
>
[quoted text clipped - 7 lines]
>
> Could anyone tell me how to copy the value of class?

You would have to copy the value of all of the class' fields.

But take a look at Arrays.sort().  With that method you can sort an
array of anything.  You will need to look at Comparator too.

Signature

Knute Johnson
email s/nospam/knute/

Roedy Green - 12 Nov 2005 03:58 GMT
>Could anyone tell me how to copy the value of class?

Class a = Wombat.class;
Class b = something.getClass();
Class temp = a;
a = b;
b = temp;

See http://mindprod.com/jgloss/classforname.html
Signature

Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.



Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2009 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.