如何像在 C++ 中一样在 Java 中实现类对,以便像在 C++ 中一样使用?
问问题
2295 次
3 回答
0
当我这样做时,我做了一些类似于Map.Entry<K, V>
标准库中的接口的事情。您可能应该重写Object.equals(Object)
,Object.hashCode()
以便键和值在逻辑上彼此相等的两对在逻辑上相等并且散列相同 - 请参阅 Bloch 的 Effective Java 的第 9 项以获取有关如何进行良好实现的一些指示。
这是我所做的:
@Override
public String toString() {
//same convention as AbstractMap.SimpleEntry
return key + "=" + value;
}
@Override
public boolean equals(Object o) {
if(o == this) return true;
if(!(o instanceof Pair)) return false;
Object otherKey = ((Pair<?, ?>)o).getKey();
Object otherValue = ((Pair<?, ?>)o).getValue();
return (key == null ? otherKey == null : key.equals(otherKey))
&& (value == null ? otherValue == null
: value.equals(otherValue));
}
@Override
public int hashCode() {
return 17 + 55555 * (key == null ? 72 : key.hashCode())
+ 232323 * (value == null ? 73 : value.hashCode());
}
于 2013-04-04T10:48:39.050 回答
-1
class Pair<F,S> {
private F first;
private S second;
public Pair(F first, S second) {
this.first = first;
this.second = second;
}
public F getFirst() { return first }
public S getSecond() { return second }
}
于 2013-04-04T10:47:05.013 回答
-1
您只需要包含正确的标题
#include <utility>
#include <string>
using std::string;
using std::makepair;
using std::pair;
void foo()
{
string hello("Hello");
float value(42);
auto p = makepair(hello, value); // or: pair<string, float> = ...
}
于 2013-04-04T11:13:23.887 回答