上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 64 下一页
摘要: JVM内存区域的划分(内存结构或者内存模型) Java 8中撤销永久代,引入元空间 JVM的分代思想 对象创建方法,对象的内存分配,对象的访问定位 Java中的四种引用 垃圾回收算法 垃圾收集器 JVM调优工具 描述一下JVM加载class文件的原理机制 线程上下文类加载器 Tomcat的类加载机制 阅读全文
posted @ 2017-11-11 14:55 __Meng 阅读(363) 评论(0) 推荐(0) 编辑
摘要: Java虚拟机根据对象存活的周期不同,把堆内存划分为几块,一般分为新生代、老年代和永久代(对HotSpot虚拟机而言),这就是JVM的内存分代策略。 永久代是HotSpot虚拟机特有的概念,它采用永久代的方式来实现方法区,其他的虚拟机实现没有这一概念,而且HotSpot也有取消永久代的趋势,在JDK 阅读全文
posted @ 2017-11-11 12:25 __Meng 阅读(688) 评论(0) 推荐(0) 编辑
摘要: 在一个二维数组中,每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序。请完成一个函数,输入这样的一个二维数组和一个整数,判断数组中是否含有该整数。 1 2 8 92 4 9 124 7 10 116 8 11 15 C++: c++: java: 阅读全文
posted @ 2017-11-10 15:43 __Meng 阅读(163) 评论(0) 推荐(0) 编辑
摘要: Given an integer (signed 32 bits), write a function to check whether it is a power of 4. Example:Given num = 16, return true. Given num = 5, return fa 阅读全文
posted @ 2017-11-10 14:57 __Meng 阅读(134) 评论(0) 推荐(0) 编辑
摘要: Write a function that takes an unsigned integer and returns the number of ’1' bits it has (also known as the Hamming weight). For example, the 32-bit 阅读全文
posted @ 2017-11-09 19:26 __Meng 阅读(129) 评论(0) 推荐(0) 编辑
摘要: Given a positive integer, check whether it has alternating bits: namely, if two adjacent bits will always have different values. Example 1: Example 2: 阅读全文
posted @ 2017-11-08 10:35 __Meng 阅读(192) 评论(0) 推荐(0) 编辑
摘要: Given an integer, write a function to determine if it is a power of two. Credits:Special thanks to @jianchao.li.fighter for adding this problem and cr 阅读全文
posted @ 2017-11-07 10:02 __Meng 阅读(144) 评论(0) 推荐(0) 编辑
摘要: We define a harmonious array is an array where the difference between its maximum value and its minimum value is exactly 1. Now, given an integer arra 阅读全文
posted @ 2017-11-06 10:25 __Meng 阅读(149) 评论(0) 推荐(0) 编辑
摘要: Given a string which consists of lowercase or uppercase letters, find the length of the longest palindromes that can be built with those letters. This 阅读全文
posted @ 2017-11-05 10:46 __Meng 阅读(151) 评论(0) 推荐(0) 编辑
摘要: Suppose Andy and Doris want to choose a restaurant for dinner, and they both have a list of favorite restaurants represented by strings. You need to h 阅读全文
posted @ 2017-11-04 14:32 __Meng 阅读(136) 评论(0) 推荐(0) 编辑
上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 64 下一页