c++ builder XE4, 10.2 Tokyo > TPanel * の配列から配列要素の個数を取得 > int numPanels = sizeof(dstPanels) / sizeof(TPanel *);
2185 ワード
動作確認
C++ Builder XE4
Rad Studio 10.2 Tokyo Update 2 (追記: 2017/12/27)
TPanel *[]の配列を定義して、自動的にその個数を取得したい。
以下でできた。
TPanel *dstPanels[] = {
/*P01TL,*/ P01BL, P01TR, P01BR,
P02TL, P02BL, P02TR, P02BR,
P03TL, P03BL, P03TR, P03BR,
P04TL, P04BL, P04TR, P04BR,
P05TL, P05BL, P05TR, P05BR,
};
int numPanels = sizeof(dstPanels) / sizeof(TPanel *);
分母のsizeof()をTPanel
型でなくTPanel *
型ですればよかったのに気づいた。
ちなみにTPanel *のsizeof()はこちらのビルド設定では4だった。
Author And Source
この問題について(c++ builder XE4, 10.2 Tokyo > TPanel * の配列から配列要素の個数を取得 > int numPanels = sizeof(dstPanels) / sizeof(TPanel *);), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/22165ecf3e7636bc53fe著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .