上一页 1 ··· 4 5 6 7 8
摘要: 设计模式只是一个在构建大型工程时,为了方便更改,添加,查询和管理的一种代码工具,没有必要单独为了设计模式而使用设计模式,使简单的事情复杂化。 阅读全文
posted @ 2017-01-04 22:47 _logan 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 环境搭建 Vagrant 教程 billie66.github.iocentos下配置vsftpd虚拟用户教程Linux命令大全ubuntu14.04 配置vsftp 解析crontab 实用技能 移动 Ubuntu16.04 桌面左侧的启动器到屏幕底部 社区 Linux cn 阅读全文
posted @ 2016-12-06 21:07 _logan 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 1 package learn.JavaBasics.Class; 2 3 import java.io.*; 4 import java.net.InetAddress; 5 import java.net.ServerSocket; 6 import java.net.Socket; 7 imp 阅读全文
posted @ 2015-10-05 04:32 _logan 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 元注解 1 package learn.JavaBasics.Class; 2 3 import java.lang.annotation.Documented; 4 import java.lang.annotation.ElementType; 5 import java.lang.annota 阅读全文
posted @ 2015-10-04 23:43 _logan 阅读(130) 评论(0) 推荐(0) 编辑
摘要: File类 1 package com.hxw.io; 2 3 class Student implements Serializable{ 4 private String name; 5 private int age; 6 7 public Student(String name, int a 阅读全文
posted @ 2015-10-04 07:16 _logan 阅读(176) 评论(0) 推荐(0) 编辑
摘要: Java集合可分为Collection和Map两大体系 在这张图中的SortedSet也是一个接口,继承了Set接口,然后TreeSet实现了SortedSet接口 注:为LinkedHashSet List Map 遍历 阅读全文
posted @ 2015-10-04 04:23 _logan 阅读(186) 评论(0) 推荐(0) 编辑
摘要: Multi Level 1 /** 2 * the output is: 3 * x = 23 4 * this.x = 1 5 * ShadowTest.this.x = 0 6 */ 7 public class ShadowTest { 8 public int x = 0; 9 10 cla 阅读全文
posted @ 2015-10-03 16:26 _logan 阅读(229) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8