-4

请注意,下面的代码只是想法,而不是实际代码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数组中的字符。

4

1 回答 1

0

如果我正确理解你的问题,这就是你要找的

std::string teststring = "abcd"

private void myMethod()
{
    int len = teststring.length();
    for(int cnt=0; cnt< len; cnt++)    
        printf("output:  %c\n", teststring[i]);    
}
于 2013-08-10T08:09:16.650 回答