按照以下思路大概总结下对linux内核4.14.2总体框架的认识 1、内核是由哪些文件组成的 2、内核的编译体系是怎么样的,是怎么编译链接起来的 3、内核的启动流程,在启动过程中大致做了哪些工作 4、通过对exynos4412开发板上移植linux内核4.14.2验证上述分析 5、编译出uImage ...
分类:
系统相关 时间:
2020-07-18 15:38:02
阅读次数:
94
变量 var存在的问题 可以重复声明 无法限制修改 没有块级作用域 (在全局范围内有效) 存在变量提升 const/let 不可以重复声明 let a = 1; let a = 2; var b = 3; var b = 4; a // Identifier 'a' has already been ...
分类:
其他好文 时间:
2020-07-18 13:48:57
阅读次数:
75
使用git 出现 Your account has been blocked 无法将本地仓库代码push到远程仓库 GitLab: Your account has been blocked. fatal: Could not read from remote repository. 解决方案如下: ...
分类:
其他好文 时间:
2020-07-18 11:22:31
阅读次数:
313
ex15.py 完成ex15.py需要在ex15.py同文件夹目录下面准备一个txt文件(ex15_sample.txt) 执行ex15.py 如: python ex15.py ex15_sample.txt。则可以读取 ex15_sample.txt这个文件的内容 读取文件的基本操作: 打开一个 ...
分类:
编程语言 时间:
2020-07-18 11:22:18
阅读次数:
71
The TV shows such as You Are the One has been very popular. In order to meet the need of boys who are still single, TJUT hold the show itself. The sho ...
分类:
其他好文 时间:
2020-07-18 00:42:55
阅读次数:
89
<template> <div> <el-form> <el-upload action="/raptorBrokerServer/service/resold/listHousing/upload/upload.do" list-type="picture-card" name="picture" ...
分类:
Web程序 时间:
2020-07-17 22:30:03
阅读次数:
141
spring.jackson.timeZone=GMT+08:00spring.jackson.date-format=yyyy-MM-dd HH:mm:ssspring.jackson.serialization.write_dates_as_timestamps=falsespring.mvc. ...
分类:
编程语言 时间:
2020-07-17 22:14:24
阅读次数:
381
老规矩: 一个锁,一个队列。 不带参数的构造器,初始化一个长度为0?的对象数组。 collection参数的构造方法,直接array=c.toArray(); 数组入参array=arrays.copy。 进入正题: 可以看到它是先加了锁,然后新copy一个length+1的数组,设值之后再将新数组 ...
分类:
其他好文 时间:
2020-07-17 22:06:44
阅读次数:
66
循环 ? 1.for for(初始值;条件;增量){ //循环体 } 2.while、do-while 语法: while(条件){ } do{ }while(条件) 小结: ? 1.for、while、do-while可以相互替换 ? 2.如果明确知道循环多少次首先for循环,如果需要循环到条件不 ...
分类:
Web程序 时间:
2020-07-17 19:34:51
阅读次数:
88
之前一直以为while 语句只能在函数中执行,今天算是涨知识了. DO $$ DECLARE i INTEGER := 1; identityId BIGINT := 200000000001; BEGIN WHILE i < 100 LOOP identityId = identityId + 1 ...
分类:
其他好文 时间:
2020-07-17 19:32:52
阅读次数:
70