gpt4 book ai didi

c++ - 为什么我不能在 VC++ 2008 中编译这个非 CLR 程序?怎么做?

转载 作者:太空狗 更新时间:2023-10-29 19:38:58 25 4
gpt4 key购买 nike

为什么我不能在 VC++ 2008 中编译/运行这个非 CLR 程序?

怎么做?

我的程序.cpp

#include <iostream>

namespace System
{
public class Console
{
public:
static void WriteLine(char str[])
{
std::cout<<str;
}
};
}

int main()
{
System::Console::WriteLine("This a non-CLR program!");
}

错误

Error   1   error C3381: 
'System::Console' : assembly access specifiers are only
available in code compiled with a /clr option
e:\...\MyProgram.cpp 6

最佳答案

那不是非 CLR C++ 程序。在适当的 C++ 中,类不能是公共(public)的(或私有(private)的)。你想要:

namespace System
{
class Console
{
public:
static void WriteLine(char str[])
{
std::cout<<str;
}
};
}

同样在 C++ 中,字 rune 字是 const,所以你的函数应该是:

static void WriteLine( const char * str)

如果你想用一个作为参数调用它。

关于c++ - 为什么我不能在 VC++ 2008 中编译这个非 CLR 程序?怎么做?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3430060/

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