个人博客:skyfffire.cn
摘要: 1.安装及建立Git仓库: 1).安装完成后首先设置用户名和Email: $ git config --global user.name "用户名" $ git config --global user.email "邮箱" 2).新建仓库(Git可以使用当前系统的命令, Windows版甚至可以使 阅读全文
posted @ 2017-03-06 20:26 skyfffire 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 1 //:InnerClassTest.java 2 // 研究内部类的初始化 3 package cn.skyfffire; 4 5 /** 6 * 7 * @author skyfffire 8 * 9 */ 10 public class InnerClassTest { 11 class InnerClass { 12 public ... 阅读全文
posted @ 2017-03-06 09:25 skyfffire 阅读(3346) 评论(0) 推荐(0) 编辑
个人博客:skyfffire.cn