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 5 years have passed since last update.

#pragma hdrstop 勉強メモ

Posted at

#pragma hdrstop ってなんぞや?

#pragma hdrstop の前の部分でプロジェクトの共通ヘッダーファイルをインクルードし,それ以降の部分で独自のヘッダーファイルをインクルードすることで,最高のコンパイラ性能を得ることができます。
by RAD Studio

プリコンパイル?

大規模なプログラムを作ることになってくると、当然インクルードするヘッダファイルが増えてきますよね? ~~(略)~~
プリコンパイル済みヘッダとはコンパイルの最初にインクルードするヘッダを全て解析したヘッダファイルのことで、~~コンパイル時間が劇的に早くなります。

一方で、小規模なプロジェクトの場合、大して変わらない模様。

stdafx.h

Visual Studio環境下でよく見るプリコンパイル済みヘッダ。

先輩エンジニアに聞いたことだが、これが上書き禁止になったりして問題を起こしたりといったハマりやすさもあるようだ。

0
0
0

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?