when someone abandons you,it is him that gets loss because he lost someone who truly loves him but you just lost one who doesn’t love you.
1 | struct child |
查看变量的类型:
1 | (gdb) whatis she |
查看详细的类型信息:
1 | (gdb) ptype she |
查看定义该变量的文件;gdb 会显示所有包含(匹配)该表达式的变量;info variables不会显示局部变量,即使是static的也没有太多的信息:
1 | (gdb) i variables she |
查看完全匹配给定名字的变量:
1 | (gdb) i variables ^she$ |
be slow to promise and quick to perform.