本文簡要介紹rust語言中 alloc::sync::Weak.ptr_eq
的用法。
用法
pub fn ptr_eq(&self, other: &Self) -> bool
如果兩個 Weak
指向相同的分配(類似於 ptr::eq
),或者如果兩者都不指向任何分配(因為它們是使用 Weak::new()
創建的),則返回 true
。
注意
由於這比較指針,這意味著 Weak::new()
將彼此相等,即使它們不指向任何分配。
例子
use std::sync::Arc;
let first_rc = Arc::new(5);
let first = Arc::downgrade(&first_rc);
let second = Arc::downgrade(&first_rc);
assert!(first.ptr_eq(&second));
let third_rc = Arc::new(5);
let third = Arc::downgrade(&third_rc);
assert!(!first.ptr_eq(&third));
比較 Weak::new
。
use std::sync::{Arc, Weak};
let first = Weak::new();
let second = Weak::new();
assert!(first.ptr_eq(&second));
let third_rc = Arc::new(());
let third = Arc::downgrade(&third_rc);
assert!(!first.ptr_eq(&third));
相關用法
- Rust Weak.new用法及代碼示例
- Rust Weak.from_raw用法及代碼示例
- Rust Weak.into_raw用法及代碼示例
- Rust Weak.upgrade用法及代碼示例
- Rust Weak.as_ptr用法及代碼示例
- Rust Wrapping.is_negative用法及代碼示例
- Rust Wrapping.from_le用法及代碼示例
- Rust Wrapping.reverse_bits用法及代碼示例
- Rust Wrapping.to_be用法及代碼示例
- Rust Wrapping.next_power_of_two用法及代碼示例
- Rust Write.write_all用法及代碼示例
- Rust Write.write_str用法及代碼示例
- Rust Windows用法及代碼示例
- Rust Write用法及代碼示例
- Rust Write.write_vectored用法及代碼示例
- Rust Wrapping.is_power_of_two用法及代碼示例
- Rust Wrapping.abs用法及代碼示例
- Rust WriterPanicked用法及代碼示例
- Rust Write.by_ref用法及代碼示例
- Rust Wrapping.rotate_right用法及代碼示例
- Rust Wake用法及代碼示例
- Rust Wrapping.leading_zeros用法及代碼示例
- Rust Write.flush用法及代碼示例
- Rust Wrapping.signum用法及代碼示例
- Rust Write.write_all_vectored用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 alloc::sync::Weak.ptr_eq。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。