當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Rust Arc.ptr_eq用法及代碼示例


本文簡要介紹rust語言中 alloc::sync::Arc.ptr_eq 的用法。

用法

pub fn ptr_eq(this: &Self, other: &Self) -> bool

如果兩個 Arc 指向相同的分配,則返回 true(類似於 ptr::eq )。

例子

use std::sync::Arc;

let five = Arc::new(5);
let same_five = Arc::clone(&five);
let other_five = Arc::new(5);

assert!(Arc::ptr_eq(&five, &same_five));
assert!(!Arc::ptr_eq(&five, &other_five));

相關用法


注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 alloc::sync::Arc.ptr_eq。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。