Topic: 请教一个对象交换的问题 |
Print this page |
1.请教一个对象交换的问题 | Copy to clipboard |
Posted by: pgty Posted on: 2004-10-24 22:10 我想定义一个函数用来交换相互的位置 比如有一个Employee类 定义以下函数 public static void sort(Employee x,Employee y) { } 中间的代码怎么写啊 |
2.Re:请教一个对象交换的问题 [Re: pgty] | Copy to clipboard |
Posted by: kavinwang Posted on: 2004-10-24 22:23 交换相互的位置,没明白,是交换它们在容器中的位置吗? |
3.Re:请教一个对象交换的问题 [Re: pgty] | Copy to clipboard |
Posted by: pgty Posted on: 2004-10-24 22:26 是啊 在C++中可以这样 Employee temp; temp=x; x=y; y=temp; 在JAVA中应该怎么样写 |
4.Re:请教一个对象交换的问题 [Re: pgty] | Copy to clipboard |
Posted by: archonLing Posted on: 2004-10-24 23:28 why write a sort if you can use the sort methods already written in java. Check out java.Collections & Comparable interfaces. In case it is for class, then your C++ code above work just as well in java. Heehee... |
5.Re:请教一个对象交换的问题 [Re: pgty] | Copy to clipboard |
Posted by: pgty Posted on: 2004-10-25 00:30 你是意思是JAVA里面不对这样了?? |
6.Re:请教一个对象交换的问题 [Re: pgty] | Copy to clipboard |
Posted by: decun Posted on: 2004-10-25 00:39 应该是和C一样的 |
7.Re:请教一个对象交换的问题 [Re: pgty] | Copy to clipboard |
Posted by: pgty Posted on: 2004-10-25 01:38 不一样 J |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |