最新 最热

【python-leetcode259-双指针】三个数的最小和

问题描述:Example:Given an array of n integers nums and a target, find the number of index triplets i, j, k with 0 <= i < j < k < n that satisfy the condition num...

2020-08-26
2

Jmeter系列(54)- 详解 Runtime Controller 运行周期控制器

一种设置运行时间的控制器,它的效果就是使该控制器下的子项运行时间为【Runtime】中的数值(单位:s)

2020-08-22
0

行为型设计模式:访问者模式

访问者模式是设计模式中最难理解的一种设计模式,代码也比较复杂。在GOF《设计模式》中ding定义如下:

2020-08-20
1

Linux音频驱动-ASOC之Machine

在ASOC小节中描述了整个ASOC的架构,其中Machine是ASOC架构中的关键部件,没有Machine部件,单独的Codec和Platform是无法工作的。因此本节则先从Machine部分开始,那应该如何开始呢? 答案当然是从代码入手,先进入ASOC在kernel...

2020-03-24
2

EF Core 迁移过程遇到EF Core tools version版本不相符的解决方案

The EF Core tools version '2.1.1-rtm-30846' is older than that of the runtime '2.1.4-rtm-31024'

2020-03-06
2

让异常处理代码更健壮

来源:dzone.com/articles/good-exception-handling

2019-11-15
2

442. Find All Duplicates in an Array

Given an array of integers, 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once.

2019-09-10
1

【秒杀】二、what?秒杀也可以做引擎?

秒杀系统是一件复杂的事,从我们上篇文章中就能看出来,洋洋洒洒又臭又长接近5000字。这样复杂的东西,如果每个系统都要写一次,势必是个非常大的人力浪费。其中一个环节考虑不周,就会功败垂成。...

2019-09-10
2

iOS runtime Extension里添加属性

关联属性创建Person类,然后在扩展文件里面添加address属性。class Person: NSObject { @objc private var name: String = "

2019-08-23
0

iOS runtime通过selector获取IMP地址

使用class_getMethodImplementation分别获取实例方法、类方法的IMP。打印出来有两个相同的地址0x0000000105f4da00,这是在调用class_getMethodImplementation时无法找到对应的实现方法。(你可以执行多次都会发现这两个...

2019-08-23
2