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.
你如何抑制一行代码的弃用警告?
这段代码应该完成你想要做的事情。
#pragma warning(push) #pragma warning(disable: WARNING_CODE) //4996 for _CRT_SECURE_NO_WARNINGS // Insert deprecated code here #pragma warning(pop)