我需要找到一种方法来查找MacOS系统的OS版本,最好没有外部库。
那怎么可能呢?
我没有MacOS机器能够测试代码。
编译器:g++
最佳答案
最简单的解决方案是:
#include <sys/utsname.h>
void main() {
struct utsname uts;
uname(&uts);
return uts.release;
}
关于c++ - C++:获取MacOS版本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/59953903/