2019年9月25日

数据结构与算法知识点(一)

摘要: 1.线性表 及Java实现 顺序表、链表、栈、队列: 转自:https://www.cnblogs.com/yaowen/p/4272310.html 阅读全文

posted @ 2019-09-25 10:39 能晓远 阅读(587) 评论(0) 推荐(0)

2019年5月28日

java学习笔记(3)——对象与类(日期)

摘要: 变量、类型、赋值、运算符等等: https://blog.csdn.net/common77zwq/article/details/81988676 1.概念: 面向对象程序设计OOP、类class、构造、实例、封装、实例域、方法、状态 对象的3各主要特性: 行为、状态、标识 类之间的关系:依赖、聚 阅读全文

posted @ 2019-05-28 17:28 能晓远 阅读(216) 评论(0) 推荐(0)

java学习笔记(2)——数组

摘要: 1.创建数组: int[] a = new int[n];//数组长度n不要求为常数,一旦创建了数组,其大小不可改变 int[] a = {0,1,2,3};//也可这样定义 获得数组元素的个数:arry.length 2.增强的for循环: for (variable:collection) st 阅读全文

posted @ 2019-05-28 14:41 能晓远 阅读(137) 评论(0) 推荐(0)

2019年5月16日

java学习笔记(1)

摘要: 1. Ctrl+Z:回到上一步 Ctrl+Y:回到下一步 2. String xiong = "nengxiaoyuan"; String xxy = xiong.substring(0,8);//提取子串 System.out.println(xxy); //输出:nengxiao 3. Stri 阅读全文

posted @ 2019-05-16 13:51 能晓远 阅读(118) 评论(0) 推荐(0)

java+elipse安装及部分问题

摘要: 1. elipse下载、安装、jdk环境配置教程: https://www.cnblogs.com/ForestDeer/p/6647402.html 2.eclipse使用教程: https://jingyan.baidu.com/article/0a52e3f4e241a0bf62ed72a7. 阅读全文

posted @ 2019-05-16 10:37 能晓远 阅读(575) 评论(0) 推荐(0)

导航