# Test

常见工具 Road Map

Ubuntu https://ubuntu.com/about/release-cycle JDK https://ww

Test

spring boot项目使用sonarqube审核代码

https://www.sonarsource.com/products/sonarqube/deployment/ s

Test

hello oracle cloud

Test

JVM内存结构之三·堆中对象

这些类都定义在包中:jdk/src/hotspot/share/oops/ oop:ordinary object pointer # 零、oopDesc基类 0.1 对象访问定位 如果对象访问定位采用 句柄,那么句柄中 指向实例数据的指针应指向 oopDesc实例的地址,指向对象实例类型的指针仍指向方法区。 如果对象访问定为采用 直接指针,那么这个指针就是 oopDesc实例的地址。所以这时oopDesc实例中应有指向方法区中java对象类型的指针。 hostSpot使用直接指针定位对象。 0.2 oopDesc定义 // jdk/src/hotspo

Test学习

JVM内存结构之二·堆区

2.5 Heap The Java Virtual Machine has a heap that is shared among all Java Virtual Machine threads. The heap is the run-time data area from which memory for all class instances and arrays is allocated. The heap is created on virtual machine start-up. jvms里并没有规定object的内存结构,所以应该是交给

Test学习

JVM内存结构之一 程序计数器、虚拟机栈

jvms14 :Chapter 2. Data Types Run-Time Data Areas The PC Register Java Virtual Mechine Stacks Native Method Stacks Heap Method Area Run-Time Constant Pool This chapter gives an overview of the Java Virtual Machine architecture. 一、Data Types Like the Java programming language, the

Test学习

共享电脑网络给手机(安卓)

https://github.com/Genymobile/gnirehtet

Test

JVM常见面试题

1生产环境发生了内存溢出如何处理? 2生产环境应该给服务器分配多少内存合适? 3如何对垃圾收集器的性能进行调优? 4.生产环境CPU负载飙高该如何处理? 5.生产环境应该给应用分配多少线程合适? 6.不加log如何确定请求是否执行了某一行代码? 7.不加log如何实时查看某个方法的入参与返回值? 8.JVM的字节码是什么东西? 9.字符串性能问题 10Spring线程池 11熟悉使用各种监控和调试工具 12从容应对生产环境中遇到的各种调试和性能问题 13.熟悉JVM的字节码指令 14深入理解JVM的自动内存回收机制,学会GC调优

Test

termux使用指南

官网:https://termux.com/ Termux is an Android terminal emulator and Linux environment app that works directly with no rooting or setup required. A minimal base system is installed automatically - additional packages are available using the APT package manager. 不需要root即可直接将自己的安卓机化身一

Test

rust数据结构之rust实现单链表

一 fn main(){ let mut list:List<String> = List::new(); list.push(String::from("fuck")); list.push(String::from("fuck1")); list.push(String::from("fuck2")); let a = list.pop(); println!("after pop,length is:{}",list.length); println!("{}",a); let a

RustTest