From 46a43a82de03f1ac71ca51d90b63cd53ff0c605d Mon Sep 17 00:00:00 2001 From: lijinpeng Date: Sun, 23 Jan 2022 16:55:13 +0800 Subject: [PATCH] Minor update in send-sync.md --- book/contents/advance/concurrency-with-threads/send-sync.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/book/contents/advance/concurrency-with-threads/send-sync.md b/book/contents/advance/concurrency-with-threads/send-sync.md index d83ae4cf..3d1b5cd9 100644 --- a/book/contents/advance/concurrency-with-threads/send-sync.md +++ b/book/contents/advance/concurrency-with-threads/send-sync.md @@ -76,6 +76,8 @@ unsafe impl Sync for Mutex {} 当然,如果是自定义的复合类型,那没实现那哥俩的就较为常见了:**只要复合类型中有一个成员不是`Send`或`Sync`,那么该符合类型也就不是`Send`或`Sync`**。 +**手动实现 `Send` 和 `Sync` 是不安全的**,通常并不需要手动实现 Send 和 Sync trait,实现者需要使用`unsafe`小心维护并发安全保证。 + 至此,相关的概念大家已经掌握,但是我敢肯定,对于这两个滑不溜秋的家伙,大家依然会非常模糊,不知道它们该如何使用。那么我们来一起看看如何让原生指针可以在线程间安全的使用。 ## 为原生指针实现`Send`