rust怎么获取线程ID
时间: 2023-11-28 14:53:35 浏览: 408
thread-id:在Rust中获得唯一的线程ID
Rust中获取线程ID的方法是使用标准库中的thread::current()函数获取当前线程句柄,然后调用id()方法获取线程ID。示例代码如下:
```rust
use std::thread;
fn main() {
let handle = thread::current();
let thread_id = handle.id();
println!("Thread ID: {:?}", thread_id);
}
```
希望能帮到你!
阅读全文