我将 aconst char *
与字符串进行比较,由于某种原因它总是成功。
if (std::strcmp(t->detectColor->name, "ghghjg") != 0) {
printf("XXXXXXXXXXX\n");
// check if it was allready a sequencer
if (std::strcmp(t->className, "IM_SURE_IT_CANT_BE_THIS") != 0) {
printf("what is going on?\n");
detectColor 名称总是类似于绿色或蓝色,t->className
例如“ofxDTangibleBase”。仍然打印
XXXXXXXXXXX
what is going on?
在控制台中。我怎样才能得到一个有效的比较?