自分の新しいヘッダーファイルを作成することはできますか?誰かがC++で自分のヘッダーファイルを作成する方法を助けてくれますか?
はい、もちろんできますが、その前にヘッダーファイルとは何か、それらを適切に使用する方法を学ぶ必要があります。
ファイル:yourname.h
#ifndef YOUR_NAME_INCLUDE
#define YOUR_NAME_INCLUDE
/* Your function statement here */
#endif
yourname.cpp
#include <iostream.h>
#include "yourname.h"
/* Your function definition here */
main.cpp
#include <iostream.h>
#include "yourname.h"
/* Your function calling here */
ヘッダーファイルとインクルードステートメントの詳細については、以下のリンクをクリックしてください。
はい、独自のヘッダーファイルを作成できます。
ファイル:myheader.h
#ifndef MYHEADER
#define MYHEADER
......
#endif
ファイル:myclass.cpp
#include <iostream.h>
#include "myheader.h"