自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(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 2744

原创 八大排序复杂度

2021-12-12 14:20:54 348

原创 解锁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 32250 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 1013

原创 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 1312

原创 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 11185

原创 maven阿里云镜像

maven { url 'https://maven.aliyun.com/repository/jcenter' } maven { url 'https://maven.aliyun.com/repository/google' }

2021-12-12 14:18:59 454

原创 C语言中,宏替换的替换规则

:https://zhidao.baidu.com/question/333406508.htmla:tattackor简单来说:宏定义又称为宏代换、宏替换,简称“宏”。是C提供的三种预处理功能的其中一种。复杂的请看下面,讲的很全。下面的带参宏定义,多行宏定义,在Linux内核源码中很多。另外sizeof也是一个宏定义。宏定义宏定义是C提供的三种预处理功能的其中一种,这三种预...

2021-12-12 14:18:49 28322 3

原创 2021-05-05

大端小端只跟“数据类型“有关系(一个整体的数据表示单元)(几个字节一个整体)

2021-12-12 14:18:14 252

原创 java 动态/静态语句块 类动态加载

class C{      static {     //静态语句块,在加载类的时候加载,并且只被加载一次          System.out.println("static of CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC");      }  }    class D{      public D(int i){}         

2017-02-04 10:48:44 718

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除