0

このコードはhttp://msdn.microsoft.com/en-us/library/system.console.windowwidth.aspxから取得し たものです gcc コンパイラでコンパイルしたいです。

#include<cstdio>
#include<string>
#include<windows.h>
#include<iostream>
using namespace System;
int main()
{
   int origWidth;
   int width;
   int origHeight;
   int height;
   String^ m1 = "The current window width is {0}, and the " 
   "current window height is {1}.";
   String^ m2 = "The new window width is {0}, and the new " 
   "window height is {1}.";
   String^ m4 = "  (Press any key to continue...)";

    // 
   // Step 1: Get the current window dimensions. 
   //
   origWidth = Console::WindowWidth;
   origHeight = Console::WindowHeight;
   Console::WriteLine( m1, Console::WindowWidth, Console::WindowHeight );
   Console::WriteLine( m4 );
   Console::ReadKey( true );

   // 
   // Step 2: Cut the window to 1/4 its original size. 
   //
   width = origWidth / 2;
   height = origHeight / 2;
   Console::SetWindowSize( width, height );
   Console::WriteLine( m2, Console::WindowWidth, Console::WindowHeight );
   Console::WriteLine( m4 );
   Console::ReadKey( true );

   // 
   // Step 3: Restore the window to its original size. 
   //
   Console::SetWindowSize( origWidth, origHeight );
   Console::WriteLine( m1, Console::WindowWidth, Console::WindowHeight );
}

しかし、それはエラーを示しています。

エラーは

F:\Untitled2.cpp||In function 'int main()':|
F:\Untitled2.cpp|31|error: 'Console' has not been declared|
F:\Untitled2.cpp|32|error: 'Console' has not been declared|
F:\Untitled2.cpp|33|error: 'Console' has not been declared|
F:\Untitled2.cpp|34|error: 'Console' has not been declared|
F:\Untitled2.cpp|35|error: 'Console' has not been declared|
F:\Untitled2.cpp|35|error: 'name' was not declared in this scope|
F:\Untitled2.cpp|36|error: 'Console' has not been declared|
||=== Build finished: 7 errors, 0 warnings (0 minutes, 0 seconds) ===|

コードに何を追加する必要がありますか?

4

2 に答える 2

6

そのコードは C++ ではなく、C++/CLIです。Microsoft コンパイラを使用してください。

于 2013-07-25T12:30:04.723 に答える
3

Consoleは .NET クラスであり、C++/CLI からのみアクセスできます。

通常の C++ は .NET フレームワークを使用せず、その中のクラスにアクセスできません。

したがって、どの言語を書くかを決める必要があります。

于 2013-07-25T12:38:10.623 に答える