重温Objective-C的消息机制消息转发机制:首先在该类的缓存方法列表cache_method_list中查找,是否存在相关方法上一步中若没有命中,则从方法列表 objc_method_list中查找上一步中若没有命中,则从父类super的方法列表 objc_method_list中查找,直至根... ...
分类:
其他好文 时间:
2020-03-01 14:22:37
阅读次数:
111
译自:https://ruslanspivak.com/lsbasi part2/ (已获作者授权) 在他们的著作《有效思维的五个要素》(The 5 Elements of Effective Thinking)中,Burger和Starbird分享了一个故事,讲述了他们如何观察国际知名的小号演奏家 ...
分类:
其他好文 时间:
2020-03-01 12:36:46
阅读次数:
59
1、ll命令列出文件/目录长属性(权限、属性) [root@centos7 ~]#ll /etc/passwd -rw-r--r--. 1 root root 1091 1 月 31 12:38 /etc/passwd -rw-r--r--:权限 root root:属性 2、文件属性:文件属性:所 ...
分类:
系统相关 时间:
2020-02-28 13:59:06
阅读次数:
94
前言我以为第一次接触 swift 语言时,看到函数的表示形式如下:func fun(num: Int) -> Int { return num + 1 }let f = fun(1)和Objective-C对比一下:- (int)fun:(int)num { return num + 1;}int ... ...
分类:
其他好文 时间:
2020-02-28 12:03:44
阅读次数:
70
copy from : http://gityuan.com/2017/02/11/surface_flinger/ 基于Android 6.0源码, 分析SurfaceFlinger原理 frameworks/native/services/surfaceflinger/ - main_surfa ...
分类:
其他好文 时间:
2020-02-27 15:58:10
阅读次数:
66
JCB Electronic Service Tool Diagnostic Interface is used for fast and effective fault finding, check maintenance standards, see if the machine has bee ...
分类:
其他好文 时间:
2020-02-27 15:56:24
阅读次数:
82
博客迁移:https://huangshubi.github.io/2020/02/04/%E5%8A%A8%E6%80%81%E7%BC%96%E7%A8%8B/ 记录《Effective C#》C#7.0 学习过程,但是用的是C#版本7.3验证书中例子,书中有些内容是对不上的。配置语言版本 动态 ...
分类:
其他好文 时间:
2020-02-26 20:50:00
阅读次数:
76
由于工作过程中经常需要查看IOS的Objective-C代码,遂把一些常见的、有疑问的OC语法列出,方便之后会看,提升效率。Objective-C中的@语法@interface告诉编译器,我要声明一个新类,包含了类的属性和方法,以@end结尾;@implementation告诉编译器,这是某个类的具... ...
分类:
移动开发 时间:
2020-02-25 12:48:15
阅读次数:
89
Abstract Input: A query image Source: A point cloud reconstruction of a large scene (有一百多万3D点) Result:pose 关键:an efficient and effective search method ...
分类:
其他好文 时间:
2020-02-24 20:24:08
阅读次数:
68
[TOC] 01 概述 1. gcc是GNU Compiler Collection(就是GNU编译器套件),也可以简单认为是编译器,它可以编译很多种编程语言(括C、C++、Objective C、Fortran、Java等等)。 2. 当你的程序只有一个源文件时,直接就可以用gcc命令编译它。 3 ...
分类:
其他好文 时间:
2020-02-22 21:36:35
阅读次数:
72