The POSIX name for this item is deprecated

vs2017 community
win10
运行下面c代码会报错。

代码:

#include 
int mian() {
    getch();
    return 0;
}

错误:

C4996   'getch': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _getch.

解决方法1:
项目->属性->配置属性->C/C++->预处理器->预处理器定义->编辑

_CRT_SECURE_NO_DEPRECATE
_CRT_NONSTDC_NO_DEPRECATE

参考来源

解决方法2:
getch() -> _getch()

#include 
int mian() {
    _getch();
    return 0;
}

上面两种方法,还是用第二种方法吧!

ps:
deprecated 弃用
conformant 一致

你可能感兴趣的:(c)