美文网首页
常用的LLDB命令

常用的LLDB命令

作者: 程序猿_K | 来源:发表于2019-06-28 11:26 被阅读0次

    打印对象

    • print、p:打印
    • po:打印对象
    (lldb) po str
    233
    (lldb) p str
    (__NSCFConstantString *) $1 = 0x0000000100001078 @"233"
    (lldb)
    

    读取内存

    • memory read/数量格式字节数 内存地址
    • x/数量格式字节数 内存地址
    • x/3xw 0x10010

    1.格式:
    x是16进制,f是浮点,d是10进制
    2.字节大小:
    b:byte 1字节,h:half word 2字节
    w:word 4字节,g:giant word 8字节

    修改内存中的值

    • memory write 内存地址 数值
    • memory write 0x0000010 10

    相关文章

      网友评论

          本文标题:常用的LLDB命令

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