zoukankan      html  css  js  c++  java
  • 悬垂指针和野指针的区别

    Difference between Dangling Pointer and Wild Pointer?

    A dangling pointer is a pointer that used to point to a valid address but now no longer does. This is usually due to that memory location being freed up and no longer available. There is nothing wrong with having a dangling pointer unless you try to access the memory location pointed at by that pointer. It is always best practise not to have or leave dangling pointers.

    A wild pointer is a pointer that has not been correctly initialised and therefore points to some random piece of memory. It is a serious error to have wild pointers.

    悬垂指针之前指向的是有效的地址,但是现在不是这样了,通常是那个内存地址被释放掉了.

    而野指针是没有被正确初始化,它指向了内存中随机的位置.

  • 相关阅读:
    word 操作技巧
    有朝一日
    菜狗日记2021.7.10
    记一次JSON.toJSONString()踩坑
    菜狗日记2020.11.13
    菜狗日记2020.11.6
    菜狗日记2020.11.03
    菜狗日记2020.10.29
    菜狗日记2020.10.17
    菜狗日记2020.10.11
  • 原文地址:https://www.cnblogs.com/Stephen-Qin/p/13286066.html
Copyright © 2011-2022 走看看