c++不能返回数组和不能使用byte的问题

2015-01-12  本文已影响34人  中國壹石頭

采坑:

1.c++中的byte不是内置类型(java中叫基本类型),使用unsigned char来代替

2.c++中返回值不能是数组类型,如果要返回数组可以使用指针方式:

byte[] toBytes(string text) {

    return text.toBytes();

}

改写成c++方法,则表示为:

unsigned char* toBytes(string text) {

    byte* data = text.toBytes();

    return data;

}

或者

byte* toBytes() {
 unsigned char data[] = {'a','b','c'};

return data;

}

上一篇下一篇

猜你喜欢

热点阅读