rust怎么获取当前线程的操作系统级别的线程ID
时间: 2024-05-04 18:15:31 浏览: 276
thread-id:在Rust中获得唯一的线程ID
。
您可以使用 `std::thread::id::get` 函数获取当前线程的操作系统级别的线程ID,示例代码如下:
```
use std::thread;
fn main() {
let thread_id = thread::current().id();
println!("Current thread ID: {:?}", thread_id);
}
```
希望能对您有所帮助。
阅读全文