Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经尝试过使用多线程对 c++11 正则表达式进行一些实验,我认为它不是多线程安全库。
我无法解释更多。请帮我 :(
调用consta 的成员函数regex是线程安全的操作。不保证调用非const成员函数是线程安全的。
const
regex
考虑到使线程安全的唯一方法是进入锁,如果您希望它是线程安全的,那么只需regex用锁保护。