There is an apple tree outside of kaka's house. Every autumn, a lot of apples will grow in the tree. Kaka likes apple very much, so he has been carefu ...
分类:
移动开发 时间:
2019-06-01 21:30:38
阅读次数:
128
package cn.zxg.PackgeUse;/** * 测试枚举的基本使用 */public class TestEnum { public static void main(String[] args) { Season a=Season.AUTUMN; switch (a){ case S ...
分类:
编程语言 时间:
2019-05-23 00:10:38
阅读次数:
134
42028: Assignment 2 – Autumn 2019 Page 1 of 4Faculty of Engineering and Information TechnologySchool of Software42028: Deep Learning and Convolutional ...
分类:
其他好文 时间:
2019-05-12 19:51:54
阅读次数:
127
参考博客:http://www.cnblogs.com/xia-Autumn/p/6294055.html 问题描述:由于python问题Ubuntu系统崩了,登录之后无法进入桌面。重装桌面时报错,无奈之下选择重装系统。 一、先判断双系统启动方式 以管理员身份运行cmd,输入命令bcdedit。找到 ...
package object01; public enum Season { //定义枚举类 spring, summer, autumn, winter;} //测试 public class EnumTest { public void judge(Season a) { switch (a) ...
分类:
其他好文 时间:
2019-01-22 20:12:35
阅读次数:
187
题目描述 Autumn和Bakser又在研究Gty的妹子序列了!但他们遇到了一个难题。 对于一段妹子们,他们想让你帮忙求出这之内美丽度∈[a,b]的妹子的美丽度的种类数。 为了方便,我们规定妹子们的美丽度全都在[1,n]中。 给定一个长度为n(1≤n≤100000)的正整数序列s(1≤si≤n),对 ...
分类:
其他好文 时间:
2018-10-15 18:27:30
阅读次数:
216
package chapter02; public enum Season { //定义四个变量 SPRING,SUMMER,AUTUMN,WINTER; //定义一个私有构造方法 private Season(){ } } package com.bjpowernode.t02; public c ...
分类:
其他好文 时间:
2018-09-13 16:20:52
阅读次数:
129
枚举是如何实现的?(枚举的线程安全性及序列化问题) 枚举是如何保证线程安全的 举例源码 1 public enum t { 2 SPRING,SUMMER,AUTUMN,WINTER; 3 } 反编译源码 1 public final class T extends Enum 2 { 3 priva ...
分类:
编程语言 时间:
2018-08-31 01:17:08
阅读次数:
565
Problem Description There is an apple tree in front of Taotao's house. When autumn comes, n apples on the tree ripen, and Taotao will go to pick these ...
分类:
移动开发 时间:
2018-08-16 21:02:19
阅读次数:
223
There is an apple tree outside of kaka's house. Every autumn, a lot of apples will grow in the tree. Kaka likes apple very much, so he has been carefu ...
分类:
移动开发 时间:
2018-08-03 18:07:31
阅读次数:
198