Visual C++ を使用して、Cinema 4D 用のプラグインをコンパイルしています。
GeDebugOut("-->");
subroot = NULL;
head = NULL;
tail = NULL;
success = PolygonizeHierarchy(source, hh, head, tail, &subroot, malloc);
if (!success) {
/* .. */
}
String str("not set.");
if (subroot) {
GeDebugOut("yes");
str = "yes!";
GeDebugOut("Subroot name: " + subroot->GetName());
}
else {
GeDebugOut("no");
str = "no!";
}
GeDebugOut("Is there a subroot? " + str);
GeDebugOut("<--");
予想される出力は次のとおりです。
-->
yes
Subroot name: Cube
Is there a subroot? yes
<--
(または代わりに「いいえ」と同じです。)しかし、私は得る
-->
yes
<--
ここに 2 つの印刷物がないのはなぜですか?
の宣言ですGeDebugOut
。
void GeDebugOut(const CHAR* s, ...);
void GeDebugOut(const String& s);
String
クラスは連結可能です。+
オペレーターに負担がかかります。
String(void);
String(const String& cs);
String(const UWORD* s);
String(const CHAR* cstr, STRINGENCODING type = STRINGENCODING_XBIT);
String(LONG count, UWORD fillch);
friend const String operator +(const String& Str1, const String& Str2);
const String& operator +=(const String& Str);