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.
对 ISR 中的变量使用外部数据限定符是否安全?
假设C:是的,但是你需要用关键字volatile标记变量,让编译器知道它的值可以在多个线程中改变(中断基本上是不同的线程)。