08 2021 档案
摘要:template <class InputIterator, class UnaryPredicate> bool all_of (InputIterator first, InputIterator last, UnaryPredicate pred); template<class InputI
阅读全文
摘要:https://gcc.gnu.org/wiki/cxx-modules hello.cc module; #include <iostream> #include <string_view> export module hello; export void greeter (std::string
阅读全文
摘要:LD_LIBRARY_PATH以冒号结尾,GCC不赞成该冒号。 还应确保C_INCLUDE_PATH不以冒号结尾,以避免出现相关问题。 方法如下: 方法一: 重新export LIBRARY_PATH和C_INCLUDE_PATH 尾部不含冒号 方法二: export LIBRARY_PATH=$(
阅读全文
摘要:仅对当前用户生效:shell:startup 对所有用户生效:shell:common startup
阅读全文
摘要:mutex = CreateMutex(NULL, false, NULL); WaitForSingleObject(mutex, INFINITE); ReleaseMutex(mutex); CloseHandle(mutex);
阅读全文
摘要:rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,0
阅读全文