gpt4 book ai didi

c++ - 初始化一个 GLfloat

转载 作者:太空狗 更新时间:2023-10-29 23:29:02 28 4
gpt4 key购买 nike

为什么我不能这样做?

#include <gl/gl.h>

GLfloat posX;

posX=0.0f;

Visual Studio 说:

error C4430: missing type specifier - int assumed. Note: C++ does not support default-int

最佳答案

正文

 posX=0.0f;

在全局范围内,因此被视为声明,而不是声明。考虑:

#include "stdafx.h"
#include <windows.h>
#include <gl/gl.h>

GLfloat posY = 0.0f;

GLfloat posX;
posX = 0.0f;

GLfloat posZ;

int _tmain(int argc, _TCHAR* argv[])
{
posZ = 0.0f;
return 0;
}

然后 posY、posZ 编译正常,但 posX 显示问题。请注意,该问题与 GL 无关;如果您将 GLfloat 替换为普通的旧 float ,您就会得到它。

关于c++ - 初始化一个 GLfloat,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4652878/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com