gpt4 book ai didi

c++ - 对 'list' 的引用不明确,包括头文件

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

当我添加“bits/stdc++.h”头文件时,它显示 [Error] 对“list”的引用不明确。但是当我删除标题并保留所有其他标题时,代码编译正确。

#include <bits/stdc++.h>
#include<stdio.h>
#include <iostream>
#include<stdlib.h>
#include <string.h>
#include <sstream>
#define LIST_INIT_SIZE 2
#define NULL_VALUE -99999
#define SUCCESS_VALUE 99999
using namespace std;
int listMaxSize;
int * list;
int length;


void initializeList()
{
listMaxSize = LIST_INIT_SIZE;
list = (int*)malloc(sizeof(int)*listMaxSize) ;
length = 0 ;
}

最佳答案

那是因为标题 <bits/stdc++.h>有自己的列表版本,即来自列表模板 <list> .有两个拷贝或相同的不同定义会导致歧义。如果它在没有位 header (STL) 的情况下工作,那么就不要使用它。

关于c++ - 对 'list' 的引用不明确,包括头文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59222925/

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