- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要使用键(自定义对象)和值作为自定义对象集从映射创建哈希码,我使用 Guava 18.0
@Getter
public final class StockKey {
@ValidIsin
private final String isin;
@ValidExchangeId
private final Integer exchangeId;
@ValidCurrency
private final String currency
}
@EqualsAndHashCode
public final class ClientAssetPosition {
public static final double EPSILON = 0.0001;
@NotNull
private final PositionType type;
@NotNull
private final Double quantity;
@Nullable
@Getter
private Double coveredOptions;
@Nullable
@Getter
private Double blockedCoveringUnderlyings;
@Getter
@Setter
private Boolean excluded;
}
所以我有一个创建 HashCode 的函数
public static HashCode getHashCodeWithSha256(Map<StockKey, Set<ClientAssetPosition>> positions) {
final Hasher hasher = Hashing.sha256().newHasher();
for (Map.Entry<StockKey, Set<ClientAssetPosition>> positionsEntry : positions.entrySet()) {
hasher.putObject(positionsEntry.getKey(), STOCK_KEY_FUNNEL);
for (ClientAssetPosition asset : positionsEntry.getValue()) {
hasher.putObject(asset, CLIENT_ASSET_POSITION_FUNNEL);
}
}
return hasher.hash();
}
我用这样的漏斗
public static final Funnel<StockKey> STOCK_KEY_FUNNEL = new Funnel<StockKey>() {
@Override
public void funnel(StockKey from, PrimitiveSink into) {
into.putString(from.getIsin()).putString(from.getCurrency()).putInt(from.getExchangeId());
}
};
public static final Funnel<ClientAssetPosition> CLIENT_ASSET_POSITION_FUNNEL = new Funnel<ClientAssetPosition>() {
@Override
public void funnel(ClientAssetPosition from, PrimitiveSink into) {
into.putDouble(from.getQuantity()).putString(from.getType().name());
}
};
对于同一个Map,这个函数有时会返回不同的HashCode我通过这个单元测试找到了它。如果从 Maven 运行此测试会失败,但并非每次都会失败。
@Test
public void testSamePortfolioSameHAshCodeOrdersASC(){
Map<StockKey, Set<ClientAssetPosition>> positions = new HashMap<>();
positions.put(PredefinedStockKeys.UBS, Sets.newHashSet(PredefinedAssetPosition.OWN_1, PredefinedAssetPosition.ORD_B101));
positions.put(PredefinedStockKeys.UBS_FEB_12_17_C, Sets.newHashSet(PredefinedAssetPosition.OWN_1, PredefinedAssetPosition.ORD_B101));
positions.put(PredefinedStockKeys.UBSN_MAR12_12_5_C, Sets.newHashSet(PredefinedAssetPosition.OWN_1, PredefinedAssetPosition.ORD_M10));
positions.put(PredefinedStockKeys.UBSN_MAR12_12_5_P, Sets.newHashSet(PredefinedAssetPosition.OWN_1, PredefinedAssetPosition.ORD_B101));
positions.put(PredefinedStockKeys.UBSN_MAR12_13_C, Sets.newHashSet(PredefinedAssetPosition.OWN_1, PredefinedAssetPosition.ORD_B101));
positions.put(PredefinedStockKeys.UBSN_MAY12_13_C, Sets.newHashSet(PredefinedAssetPosition.C_ORD_M1, PredefinedAssetPosition.ORD_M10));
positions.put(PredefinedStockKeys.UBSN_MAR12_13_P, Sets.newHashSet(PredefinedAssetPosition.OWN_1, PredefinedAssetPosition.ORD_B101));
positions.put(PredefinedStockKeys.UBS_JAN_12_17_C, Sets.newHashSet(PredefinedAssetPosition.OWN_1, PredefinedAssetPosition.C_ORD_M1));
positions.put(PredefinedStockKeys.UBS_JAN_12_17_P, Sets.newHashSet(PredefinedAssetPosition.OWN_1, PredefinedAssetPosition.ORD_B101));
positions.put(PredefinedStockKeys.UBSH_APR12, Sets.newHashSet(PredefinedAssetPosition.C_ORD_M1, PredefinedAssetPosition.ORD_B101));
positions.put(PredefinedStockKeys.UBSH_MAR12, Sets.newHashSet(PredefinedAssetPosition.C_ORD_M1, PredefinedAssetPosition.ORD_B101));
positions.put(PredefinedStockKeys.UBSH_MAY12, Sets.newHashSet(PredefinedAssetPosition.C_ORD_M1, PredefinedAssetPosition.ORD_B101));
Map<StockKey, Set<ClientAssetPosition>> positionsv2 = new HashMap<>();
positionsv2.put(PredefinedStockKeys.UBS, Sets.newHashSet(PredefinedAssetPosition.OWN_1, PredefinedAssetPosition.ORD_B101));
positionsv2.put(PredefinedStockKeys.UBSN_MAR12_12_5_C, Sets.newHashSet(PredefinedAssetPosition.OWN_1, PredefinedAssetPosition.ORD_M10));
positionsv2.put(PredefinedStockKeys.UBSN_MAR12_12_5_P, Sets.newHashSet(PredefinedAssetPosition.OWN_1, PredefinedAssetPosition.ORD_B101));
positionsv2.put(PredefinedStockKeys.UBSH_APR12, Sets.newHashSet(PredefinedAssetPosition.C_ORD_M1, PredefinedAssetPosition.ORD_B101));
positionsv2.put(PredefinedStockKeys.UBSN_MAY12_13_C, Sets.newHashSet(PredefinedAssetPosition.C_ORD_M1, PredefinedAssetPosition.ORD_M10));
positionsv2.put(PredefinedStockKeys.UBSN_MAR12_13_P, Sets.newHashSet(PredefinedAssetPosition.OWN_1, PredefinedAssetPosition.ORD_B101));
positionsv2.put(PredefinedStockKeys.UBS_JAN_12_17_C, Sets.newHashSet(PredefinedAssetPosition.OWN_1, PredefinedAssetPosition.C_ORD_M1));
positionsv2.put(PredefinedStockKeys.UBS_JAN_12_17_P, Sets.newHashSet(PredefinedAssetPosition.OWN_1, PredefinedAssetPosition.ORD_B101));
positionsv2.put(PredefinedStockKeys.UBS_FEB_12_17_C, Sets.newHashSet(PredefinedAssetPosition.OWN_1, PredefinedAssetPosition.ORD_B101));
positionsv2.put(PredefinedStockKeys.UBSH_MAR12, Sets.newHashSet(PredefinedAssetPosition.C_ORD_M1, PredefinedAssetPosition.ORD_B101));
positionsv2.put(PredefinedStockKeys.UBSN_MAR12_13_C, Sets.newHashSet(PredefinedAssetPosition.ORD_B101, PredefinedAssetPosition.OWN_1));
positionsv2.put(PredefinedStockKeys.UBSH_MAY12, Sets.newHashSet(PredefinedAssetPosition.C_ORD_M1, PredefinedAssetPosition.ORD_B101));
HashCode hashCodeWithSha256Expected = HashHelper.getHashCodeWithSha256(positions);
HashCode hashCodeWithSha256Exist = HashHelper.getHashCodeWithSha256(positionsv2);
Assert.assertArrayEquals(hashCodeWithSha256Expected.asBytes(), hashCodeWithSha256Exist.asBytes());
}
有人可以解释一下我做错了什么吗?
最佳答案
我认为问题与订购有关。即使从一个调用到另一个调用,如果您分别将相同的键/值对或值放入 HashMap
或 HashSet
中,也无法保证条目的顺序会发生变化。两次调用之间保持不变。当然,跨 JVM 运行的情况要少得多。
因此,您需要重写哈希计算方法,以便在计算哈希之前强制执行命令...
由于您使用 Guava,这很简单:使用 Ordering.sortedCopy()
。
这应该可以做到;但是,请注意,这假设您的 StockKey
和 ClientAssetPosition
类实现 Comparable
:
public static HashCode getHashCodeWithSha256(Map<StockKey, Set<ClientAssetPosition>> positions)
{
final Hasher hasher = Hashing.sha256().newHasher();
final Iterable<StockKey> orderedKeys
= Ordering.sortedCopy(positions.keySet());
Iterable<ClientAssetPosition> orderedAssets;
for (final StockKey key: orderedKeys) {
hasher.putObject(key, STOCK_KEY_FUNNEL);
orderedAssets = Ordering.sortedCopy(positions.get(key));
for (final ClientAssetPosition asset: orderedAssets)
hasher.putObject(asset, CLIENT_ASSET_POSITION_FUNNEL);
}
return hasher.hash();
}
<小时/>
但是:确实考虑切换到Multimap
。请记住,如果您在某些时候需要向后兼容,它还有一个 .asMap()
方法。
关于java - Guava Hasher 有时对同一对象给出不同的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28369607/
我需要使用键(自定义对象)和值作为自定义对象集从映射创建哈希码,我使用 Guava 18.0 @Getter public final class StockKey { @ValidIs
我需要使用不同于默认的哈希器来建立一个哈希表,所以我这样写: class foo { public: ... private: struct myhasher { size_t opera
我在一个由 handlebarsJS 提供支持的 SPA 上使用 crossroadsJS 和 hasherJS。回想起来,我可能应该在 Ember 上构建整个东西,但已经晚了,重新开始并不明智。 我
如果我使用 hash() 或 hasher.write() 函数,像 1234 这样的数字会得到相同的结果,但是一个字节slice like b"Cool" 不会。我认为应该是一样的;为什么不是呢?
所以我刚刚设置了我的 Digital Ocean droplet(服务器)并一直在努力让这个网站正常工作,但是我遇到了一个接一个的错误。我终于让网站加载了登录页面(这是应该发生的),但是当我登录时,我
我们正在从 CakePHP 2.X 迁移应用程序,但我们需要在迁移之前实现我们的移动 API。我已经关注了我能找到的所有项目,但它们似乎都适用于 v5 或更低版本。无论我做什么,Hash::make(
我目前有这段代码: crossroads.addRoute('/login', function(){ $.ajax({ url: '/login', type
我有一个看起来像这样的数据结构: pub struct X { hasher: Box, phantom: std::marker::PhantomData, } 它的用法如下: im
我刚刚开始使用 crossroads.js和 hasher.js并且我已经成功解析了我的大部分路线。我不明白的是如何回到页面的根目录。我知道我说得不对,但这是我的问题: 我导航至 http://exa
我想说,hasher 和 key_equal 之间一定有关系。如果两个元素相同(调用 equal 返回 true)它们必须具有相同的散列,否则将在错误的桶中搜索元素。 但是http://www.cpl
在 Java 6 中,我的理解是,您可以在创建 TreeSet 时向 TreeSet 提供比较器,以覆盖集合中对象的“自然顺序”。 您是否有任何想法为什么 Java 不支持提供覆盖集合中对象的“自然散
我是一名优秀的程序员,十分优秀!