最新 最热

java执行和停止Logcat命令及多线程实现

本人在使用UiAutomator的时候,想多写一个自动收集手机log的方法,使用runtime类执行了adb logcat的方法,但是一直找不到好的方法结束这个线程,网上说有kill pid的,但是这个操作起来略微麻烦了。自己也想了一个destroy线程的...

2019-08-14
1

vc编译去掉vcruntime140.dll依赖

LNK2001 无法解析的外部符号 __except_handler4_common msvcrt.lib

2019-07-24
0

go 并发设置cpu runtime.GOMAXPROCS设置

一般多核cpu,设置 cpu数目减一的效率要比直接设置runtime.NumCPU()高一点。

2019-07-22
0

【leetcode刷题】T34-只出现一次的数字 II

Given a non-empty array of integers, every element appears three times except for one, which appears exactly once. Find that single one.

2019-07-18
0

Golang的GC过程备忘

一次GC有两次触发STW,一次是GC的开始阶段,主要是开启写屏障和辅助GC等操作 另外就是表记完成之后,重新扫描部分根对象,禁用写屏障

2019-06-11
0

Java之Retry重试机制详解

应用中需要实现一个功能: 需要将数据上传到远程存储服务,同时在返回处理成功情况下做其他操作。这个功能不复杂,分为两个步骤:第一步调用远程的Rest服务上传数据后对返回的结果进行处理;第二步拿到第一步结果或者捕捉异常,...

2019-05-21
1

看似简单但容易忽视的编程常识

这些年写了很多的代码、也读过很多的人写的代码,这几年,写代码的机会越来越少,但是每次写代码,感觉需要思考的东西越来越多,好的代码确实难能可贵,在国内业界中,好的软件不少,但是好的代码确实有点凤毛麟角了,写得出来的人不多...

2018-08-06
0

Leetcode 34 Search for a Range

Given a sorted array of integers, find the starting and ending position of a given target value. Your algorithm's runtime complexity must be in the order of O...

2018-01-12
0

Leetcode 137 Single Number II

Given an array of integers, every element appears three times except for one. Find that single one.

2018-01-12
0

Leetcode 136 Single Number

Given an array of integers, every element appears twice except for one. Find that single one. Note:

2018-01-12
0