本文簡要介紹rust語言中 core::hash::Hasher.finish
的用法。
用法
fn finish(&self) -> u64
返回到目前為止寫入的值的哈希值。
盡管它的名字,該方法不會重置散列器的內部狀態。額外的 write
將從當前值繼續。如果您需要開始一個新的哈希值,則必須創建一個新的哈希。
例子
use std::collections::hash_map::DefaultHasher;
use std::hash::Hasher;
let mut hasher = DefaultHasher::new();
hasher.write(b"Cool!");
println!("Hash is {:x}!", hasher.finish());
相關用法
- Rust Hasher.finish用法及代碼示例
- Rust Hasher.write用法及代碼示例
- Rust Hasher用法及代碼示例
- Rust HashSet.get_or_insert_with用法及代碼示例
- Rust HashMap.get用法及代碼示例
- Rust HashMap.try_insert用法及代碼示例
- Rust HashSet.insert用法及代碼示例
- Rust HashSet.get_or_insert用法及代碼示例
- Rust HashSet用法及代碼示例
- Rust HashSet.is_superset用法及代碼示例
- Rust HashSet.shrink_to用法及代碼示例
- Rust HashMap.keys用法及代碼示例
- Rust HashSet.with_hasher用法及代碼示例
- Rust HashMap.iter用法及代碼示例
- Rust HashMap.iter_mut用法及代碼示例
- Rust HashMap.retain用法及代碼示例
- Rust HashMap.with_capacity_and_hasher用法及代碼示例
- Rust HashSet.with_capacity用法及代碼示例
- Rust HashSet.difference用法及代碼示例
- Rust HashMap.clear用法及代碼示例
- Rust HashMap.reserve用法及代碼示例
- Rust HashSet.try_reserve用法及代碼示例
- Rust HashMap.with_hasher用法及代碼示例
- Rust HashMap.into_keys用法及代碼示例
- Rust HashSet.hasher用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 core::hash::Hasher.finish。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。