美文网首页
ios 打印对象指针地址和内存地址

ios 打印对象指针地址和内存地址

作者: liang1030 | 来源:发表于2019-12-20 17:05 被阅读0次

    OC:

    NSString *str = @"lu";
    NSLog(@"%p - %p",str, &str);

    Swift:

    var str = "lu"

    内存地址:
    print(String(format: "%p", str))

    指针地址:
    let pointer = withUnsafePointer(to: &str, {$0})
    print("(pointer)")

    swift指针参考:http://www.cocoachina.com/articles/26419
    https://blog.csdn.net/GuoHeroes/article/details/81043747

    相关文章

      网友评论

          本文标题:ios 打印对象指针地址和内存地址

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