Cpp クラス デストラクタ 新しいページはコチラ
提供: yonewiki
(→クラス デストラクタ) |
(→クラス デストラクタ) |
||
68行: | 68行: | ||
<span style="color: #ffffff; background-color: #555555; padding: 0px 5px 0px 5px; display: inline-block;">cpp <span>(</span>Ctest.cpp<span>)</span></span><!-- padding 上 右 下 左--> | <span style="color: #ffffff; background-color: #555555; padding: 0px 5px 0px 5px; display: inline-block;">cpp <span>(</span>Ctest.cpp<span>)</span></span><!-- padding 上 右 下 左--> | ||
<syntaxhighlight2 lang="cpp" line> | <syntaxhighlight2 lang="cpp" line> | ||
− | #include " | + | #include "ctest.h" |
void Ctest::Ctest(int iArraySize){ | void Ctest::Ctest(int iArraySize){ | ||
piValue = new int[iArraySize]; | piValue = new int[iArraySize]; | ||
81行: | 81行: | ||
<syntaxhighlight2 lang="cpp" line> | <syntaxhighlight2 lang="cpp" line> | ||
#include <cstdio> | #include <cstdio> | ||
+ | #include "ctest.h" | ||
using namespace std; | using namespace std; |