请注意,下面的代码只是想法,而不是实际代码。teststring[]
单击按钮时,如何一次打印一个数组中的字符?
const string teststring[] = {
"a",
"b",
"c",
"d",
};
if ( button ).onclick() == true {
int i = 0;
printf("output: %s\r\n", teststring[i]);
i++;
}
它类似于http://jsfiddle.net/Dfprp/中的代码,但这是在 JavaScript 中,而不是数字,我想要存储在我的teststring
数组中的字符。