0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

VisualStudio2019 C++ 空のプロジェクトで C++17を使う

Last updated at Posted at 2020-06-20

空のC++プロジェクト作成

VisualStudio2019 C++ 空のプロジェクトで

で C++17 機能の インライン変数を実装してみる

Microsoft Visual Studio 2020-06-20 21.49.00_C++空のプロジェクト.png

静的エラー!

image.png

$\huge{デフォルトではC++17ビルドになっていないのですね・・・}$

コピペで直ぐに確認したい方はこちら

cpp17.cpp
# include<iostream>
# include<memory>
using namespace std;
class Foo
{
public:
	static inline int foo;
};

int main()
{
	Foo::foo = 123;
	cout << Foo::foo  << endl;
}

C++17ビルド の設定方法

設定変更します。
ソリューションエキスプローラーのプロジェクトを右クリック(※ソリューションでは無い)
プロパティ > C++言語標準 を ISO C++17 標準 (std:c++17) に変更して OK で決定

・・・以下動画を参考に。※プロパティが動画では切れてて見えませんが、一番下です。

設定後、静的エラーが消えるのが分かります。C++17inlineHENSUU.gif

サンプルは変数に値を入れるだけのもの。見た目は何もない。これで無事、ビルドが通ります。

0
0
7

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?