240 发简信
IP属地:浙江
  • Python对象通过引用计数排查脚本层内存泄漏

    1. 获取目标对象的引用计数: 返回该对象目前的引用计数, 注意调用此函数时引用计数会+1 sys.getrefcount(object):Re...

  • Synchronized 详解

    synchronized关键字采用对代码块/方法体加锁的方式解决Java中多线程访问同一个资源时,引起的资源冲突问题。 synchronized...

  • [转]用讲故事的方法解释ARP、ARP欺骗、网关

    假设你叫小不点(本地主机),住在一个大院子(本地局域网)里,有很多邻居(网络邻居),门口传达室有个看大门的李大爷,李大爷就是你的网关。当你想跟院...

  • Android Service(服务)浅析

    Service概念 Service是一个可以在后台执行长时间运行操作而不提供用户界面的应用组件。服务可由其他应用组件启动,而且即使用户切换到其他...

  • 遍历Activity中的控件

    要实现遍历Activity中的控件,可以通过获取Activity的contentView,然后采用getChildCount()和getChil...

  • LeetCode_338_CountingBits

    Given a non negative integer number num. For every numbers i in the rang...

  • LeetCode_258_AddDigits

    Given a non-negative integer num, repeatedly add all its digits until th...

  • LeetCode_238_Product of Array Except Self

    Given an array of n integers where n > 1, nums, return an array output s...

  • LeetCode_136_SingleNumber

    Given an array of integers, every element appears twice except for one. ...