摘要: 去掉自动更新项勾选 Options->Preferences->General->Automatically check for software updates 阅读全文
posted @ 2022-03-10 08:47 AlexAlex 阅读(581) 评论(0) 推荐(0) 编辑
摘要: 在配置交叉编译环境的时候,使用到一个脚本,脚本很大,以前也没有细究这个问题,大概知道是自解压,趁着年底事少,分析一下这个脚本的原理。 原理比较简单,脚本尾部含有一个压缩过的二进制数据块,在脚本配置的过程中,会读取并解压这个数据块,然后完成配置。 #!/bin/bash #前置配置过程,用来检查前置条 阅读全文
posted @ 2021-02-04 09:50 AlexAlex 阅读(301) 评论(0) 推荐(0) 编辑
摘要: Motivation 动机 All the time we design a program module and we create some class hierarchies. Then we extend some classes creating some derived classes. 阅读全文
posted @ 2020-04-12 21:50 AlexAlex 阅读(563) 评论(0) 推荐(0) 编辑
摘要: Motivation 动机 In this context, a responsibility is considered to be one reason to change. This principle states that if we have 2 reasons to change fo 阅读全文
posted @ 2020-04-12 21:32 AlexAlex 阅读(392) 评论(0) 推荐(0) 编辑
摘要: Motivation 动机 When we design an application we should take care how we are going to make abstract a module which contains several submodules. Consider 阅读全文
posted @ 2020-04-12 16:53 AlexAlex 阅读(531) 评论(0) 推荐(0) 编辑
摘要: Motivation 动机 When we design software applications we can consider the low level classes the classes which implement basic and primary operations(disk 阅读全文
posted @ 2020-04-12 10:35 AlexAlex 阅读(440) 评论(0) 推荐(0) 编辑
摘要: Motivation 动机 A clever application design and the code writing part should take care of the frequent changes that are done during the development and 阅读全文
posted @ 2020-04-12 00:11 AlexAlex 阅读(696) 评论(0) 推荐(0) 编辑
摘要: 1. 设计模式定义 模式描述了一个在我们周围不断重复发生的问题,以及该问题的解决方案的核心思想,这样就能直接利用此方案,不必做重复劳动; GOF中的设计模式是对用来在特定场景下解决一般设计问题的类和相互通信的对象的描述; 2. 设计模式分类 GOF中共包含了23种设计模式,根据其目的可以将模式分为创 阅读全文
posted @ 2020-04-07 21:50 AlexAlex 阅读(368) 评论(0) 推荐(0) 编辑
摘要: 一、git安装 环境: ubuntu 18.04 步骤: 1. 执行下git命令,提示找不到该命令,需要安装git; 2. 根据提示安装之; 3. 安装完成,看看版本号,成功; 4. 看一下帮助,内部有一些常用命令的说明,大多猜名字就能知道个大概,版本管理工具差不多;后面再测试每个部分是怎么使用的吧 阅读全文
posted @ 2020-04-07 00:21 AlexAlex 阅读(334) 评论(0) 推荐(0) 编辑
摘要: Chapter 0 第0章 Operating system interfaces 操作系统接口 The job of an operating system is to share a computer among multiple programs and to provide a more u 阅读全文
posted @ 2019-12-07 21:55 AlexAlex 阅读(487) 评论(0) 推荐(0) 编辑