1

每当我定义

rs_allocation abcd;

在我的渲染脚本中,恐怕我会忘记从 Java 绑定它,从而导致神秘问题。有没有办法写

if (abcd == NULL)
    rsDebug("Error");

或者

if (!rsIsValidAllocation(abcd))
    rsDebug("Error");

ETC ?

4

1 回答 1

2

你想要这样的东西...

if(!rsIsObject(abcd))
于 2013-06-06T02:03:46.583 回答