Qt(MSVC)编译时报错error C2065: 'M_PI': undeclared identifier

问题描述

Qt(MSVC)编译时报错error C2065: ‘M_PI’: undeclared identifier

解决方法

添加如下:
#define _USE_MATH_DEFINES
#include <math.h>(math.h改成cmath还会报上述错)

发布了4 篇原创文章 · 获赞 0 · 访问量 19

猜你喜欢

转载自blog.csdn.net/darkblue2017/article/details/105489163