摘要: 阅读全文
posted @ 2019-05-18 23:54 殇之弑梦 阅读(210) 评论(0) 推荐(0) 编辑
摘要: package Function; import java.util.Scanner; import StudentaChievementManagementSystem.Students; public class Sort { //冒泡排序 public static void bubbleSort(int[] arr) { for (int ... 阅读全文
posted @ 2019-05-18 22:57 殇之弑梦 阅读(220) 评论(0) 推荐(0) 编辑
摘要: PS:静态与对象没关系 静态代码块在对象之前产生;若要初始化静态成员,则静态成员必须在静态代码块之前定义 总结: 直接分号结尾,没有花括号 接口: 接口特点: package workhome.day04; public class interfaceDemo { public static voi 阅读全文
posted @ 2019-05-18 22:46 殇之弑梦 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 列表: #!/usr/bin/env python # -*- encoding:UTF-8 -*- li = [1, 12, 4, "age", ["fa", ["10", 13], "jfdksl"], "alex", True] # 中括号括起来 # 分割每个元素 # 列表中的元素可以是 任何 阅读全文
posted @ 2019-05-18 16:14 殇之弑梦 阅读(245) 评论(0) 推荐(0) 编辑