- 博客(10)
- 收藏
- 关注
原创 Java 修饰符(Modifier)声明顺序
from: https://docs.oracle.com/javase/8/docs/api/java/lang/reflect/Modifier.htmlpublic staticStringtoString(intmod)Return a string describing the access modifier flags in the specified mod
2021-12-12 14:21:05
2806
原创 解锁Insyde的BIOS隐藏设置
我使用的笔记本是神舟K580PI3D1, 其他的没有试过。步骤:1.使用BIOS_Backup_TooKit_V2.0 软件提取BIOS image文件2.使用 UEFITool 软件解析BIOS image, 并提取出相应的 .sct 文件3.使用Universal IFR Extractor 软件将 .sct文件解析为可读的 .txt文件4.从 .txt文件里找出你想改...
2021-12-12 14:20:29
33662
5
原创 Unicode(unicode scalar) to UTF-16
What is a unicode scalar?https://www.quora.com/What-is-a-unicode-scalar为什么 U+12345 -> D808 DF45(utf16) ?Table : UTF-16 Bit DistributionScalar ValueUTF-16xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx000uuuuuxxxxxxxxxxxxxxxx110110wwwwxxxxxx 110111
2021-12-12 14:20:13
1181
原创 fseek(), ftell() 获取文件大小
C手册上说, 使用fseek()时,* Library implementations are allowed to not meaningfully supportSEEK_END(therefore, code using it has no real standard portability).就是说fseek到SEEK_END有可能是不支持的.后来发现在https:/...
2021-12-12 14:19:49
1378
原创 Kotlin中调用forEach函数时的特殊写法
Kotlin中的forEach函数声明是这样的:inlinefunByteArray.forEach(action:(Byte)->Unit)(source)就是说这个函数需要接受一个action参数,所以他的调用写法应该是这样的:ints.forEach(fun(value: Int) { if (value == 0) return ...
2021-12-12 14:19:16
11312
原创 maven阿里云镜像
maven { url 'https://maven.aliyun.com/repository/jcenter' } maven { url 'https://maven.aliyun.com/repository/google' }
2021-12-12 14:18:59
499
原创 C语言中,宏替换的替换规则
:https://zhidao.baidu.com/question/333406508.htmla:tattackor简单来说:宏定义又称为宏代换、宏替换,简称“宏”。是C提供的三种预处理功能的其中一种。复杂的请看下面,讲的很全。下面的带参宏定义,多行宏定义,在Linux内核源码中很多。另外sizeof也是一个宏定义。宏定义宏定义是C提供的三种预处理功能的其中一种,这三种预...
2021-12-12 14:18:49
30012
3
原创 java 动态/静态语句块 类动态加载
class C{ static { //静态语句块,在加载类的时候加载,并且只被加载一次 System.out.println("static of CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC"); } } class D{ public D(int i){}
2017-02-04 10:48:44
773
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人