gpt4 book ai didi

c++ - 'int right' 编程图形 C++

转载 作者:行者123 更新时间:2023-11-28 01:19:52 25 4
gpt4 key购买 nike

如何修复 int right 的重新定义?请参阅下面的代码。

这里的 int right=INT_MAX 就是问题所在

unsigned imagesize( int left, int top, int right, int bottom );
void getimage( int left, int top, int right, int bottom, void *bitmap );
void putimage( int left, int top, void *bitmap, int op );
void printimage(
const char* title=NULL,
double width_inches=7, double border_left_inches=0.75, double border_top_inches=0.75,
int left=0, int right=0, int right=INT_MAX, int bottom=INT_MAX,
bool active=true, HWND hwnd=NULL
);

最佳答案

在您的 printimage 声明中,您有两个名为 right 的输入参数:

    int left=0, int right=0, int right=INT_MAX, int bottom=INT_MAX,
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

您不能两次声明具有相同名称的变量或参数 - 您如何区分它们以使用它们?因此重新声明错误。 (不过,我很欣赏这里的声明并没有太大关系:真正重要的是它们都是整数,因为你只是在声明函数签名,编译器可能会忽略它,只要你得到它在函数定义中具有不同的名称。)

根据您其他声明中的模式(左、上、右、下),我认为您希望将第一个更改为 int top,即

void printimage(
const char* title=NULL,
double width_inches=7, double border_left_inches=0.75, double border_top_inches=0.75,
int left=0, int top=0, int right=INT_MAX, int bottom=INT_MAX,
bool active=true, HWND hwnd=NULL
);

关于c++ - 'int right' 编程图形 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56983937/

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