美文网首页
c++获取数组的指针

c++获取数组的指针

作者: 中國壹石頭 | 来源:发表于2015-01-13 11:47 被阅读8次

    // pointer_to_Byte_array.cpp

    // compile with: /clr

    using namespace System;

    int main() {

    Byte bArr[] = {1, 2, 3};

    Byte* pbArr = &bArr[0];

    array ^ bArr2 = gcnew array{1,2,3};

    interior_ptr pbArr2 = &bArr2[0];

    }

    相关文章

      网友评论

          本文标题:c++获取数组的指针

          本文链接:https://www.haomeiwen.com/subject/fdiqxttx.html