Github上那些优秀的学习项目

coding-interview-university

Github地址:https://github.com/jwasham/coding-interview-university/tree/main

项目名称为编程面试大学,项目作者为了面试Google每天自学8~12小时,持续了8个月。作者提供了一份任务清单,每完成一项打钩。完成任务清单后可以让你轻松应对各种技术面试。作者还提醒

Warning

请注意: 你不需要像我一样那么努力学习。我在一些不必要的事情上浪费了很多时间。关于这个问题下面有更多信息。我会帮助你节省宝贵的时间,让你达到目标。 在这份清单内的主题会让你拥有足够的知识去面对几乎每家软件公司的技术面试,包括科技巨头:Amazon、Facebook、Google,以及 Microsoft。

阅读更多

关于 G1垃圾收集器、永久代和元空间(About G1 Garbage Collector, Permanent Generation and Metaspace)

Note

内容复制自 Oracle - Poonam Bajaj的博客,About G1 Garbage Collector, Permanent Generation and Metaspace. 目前此链接已无法访问,且无法从Oracle上查询到此篇文章。

以下为文章内容。内容为英文+翻译,翻译大部分内容为机翻,已通过人工校对对机翻不准确的内容做了修改。但限于本人翻译水平有限,不能保证翻译内容百分比正确,如有错误欢迎指正。

We received some questions around the G1 garbage collector and the use of Permanent Generation with it. There seems to be some confusion that the Hotspot JVM does not use permanent generation when G1 is used as the garbage collector. Here’s some clarification:

我们收到了一些关于 G1 垃圾收集器及其永久代使用的问题。当 G1 用作垃圾回收器时,Hotspot JVM 不使用永久代,这似乎有些混淆。以下是一些说明:

阅读更多