gpt4 book ai didi

c++ - 如何解决 gcc-3.4 错误(或者这可能不是错误)?

转载 作者:搜寻专家 更新时间:2023-10-31 00:48:44 25 4
gpt4 key购买 nike

以下代码失败并显示错误消息:

t.cpp: In function `void test()':
t.cpp:35: error: expected primary-expression before '>' token
t.cpp:35: error: expected primary-expression before ')' token

现在我没有看到代码有任何问题,它可以使用 gcc-4.x 和 MSVC 2005 进行编译,但不能使用 gcc-3.4(在某些平台上仍然很流行)进行编译。

#include <string>
#include <iostream>

struct message {
message(std::string s) : s_(s) {}
template<typename CharType>
std::basic_string<CharType> str()
{
return std::basic_string<CharType>(s_.begin(),s_.end());
}
private:
std::string s_;
};


inline message translate(std::string const &s)
{
return message(s);
}


template<typename TheChar>
void test()
{
std::string s="text";
std::basic_string<TheChar> t1,t2,t3,t4,t5;

t1=translate(s).str<TheChar>(); // ok

char const *tmp=s.c_str();
t2=translate(tmp).str<TheChar>(); // ok

t3=message(s.c_str()).str<TheChar>(); // ok

t4=translate(s.c_str()).str<TheChar>(); // fails

t5=translate(s.c_str()).template str<TheChar>(); // ok

std::cout << t1 <<" " << t2 <<" " << t3 << " " << t4 << std::endl;
}

int main()
{
test<char>();
}

是否可以在translate 函数和message 类级别上解决它,或者我的代码可能是错误的,如果是的话在哪里?

编辑:

Bugs related to template-functions in GCC 3.4.6说我需要使用关键字 template 但我应该使用吗?

这是一个错误吗?我必须写一个 template 关键字吗?因为在所有其他情况下我不必这样做?当我使用“.c_str()”成员函数时,它非常有线,我不必编写它。

为什么 gcc-4 并不总是一个选项

这个程序在Cygwin下用gcc-4编译时不启动

#include <iostream>
#include <locale>

class bar : public std::locale::facet {
public:
bar(size_t refs=0) : std::locale::facet(refs)
{
}
static std::locale::id id;
};

std::locale::id bar::id;


using namespace std;

int main()
{
std::locale l=std::locale(std::locale(),new bar());
std::cout << has_facet<bar>(l) << std::endl;
return 0;
}

并且此代码无法在 OpenSolaris 2009 下使用 gcc-4.3 进行编译 - 破坏概念检查...

#include <map>
struct tree {
std::map<int,tree> left,right;
};

最佳答案

如其他地方所述,这似乎是一个编译器错误。很公平;那些存在。以下是您如何处理这些问题:

#if defined(__GNUC__) && __GNUC__ < 4
// Use erroneous syntax hack to work around a compiler bug.
t4=translate(s.c_str()).template str<TheChar>();
#else
t4=translate(s.c_str()).str<TheChar>();
#endif

GCC 始终将 __GNUC__ 定义为主要编译器版本号。如果您需要它,您还可以获得 __GNUC_MINOR____GNUC_PATCHLEVEL__ 用于 x.y.z 版本号的 y 和 z。

关于c++ - 如何解决 gcc-3.4 错误(或者这可能不是错误)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2361388/

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