Description Given a sorted array nums, remove the duplicates in-place such that each element appear only once and return the new length. Do not allocate extra space for another array, you must do this by modifying the input array in-place with O(1) e…
前言 本文是跟随掘金小册张师傅的<JVM字节码从入门到精通>练习而写的. 问题 问题一: 有如下代码: 1 package com.sun.tools.javac; 2 3 /** 4 * @author TY 5 */ 6 public class Foo { 7 8 public static void foo() { 9 int a = 0; 10 int b = 6; 11 int c = 130; 12 int d = 33000; 13 } 14 15 } 很简单的一段代码,看似没…
一.java中的枚举类型: 在实际编程中,往往存在着这样的"数据集",它们的数值在程序中是稳定的,而且"数据集"中的元素是有限的.例如星期一到星期日七个数据元素组成了一周的"数据集",春夏秋冬四个数据元素组成了四季的"数据集".在java中如何更好的使用这些"数据集"呢?因此枚举便派上了用场,下面的一段代码来说明枚举类型的特点和用法: public class EnumTest { public stati…