上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 18 下一页
摘要: win+R调出运行窗口: 输入services.msc,查找 跳出服务窗口,点击windows update设置禁用即可 Windows Update Medic Service没办法禁用,需要采用其他的办法 通过“Win”+ “R”组合键,打开运行窗口,输入“regedit”, 在注册表中找到“计 阅读全文
posted @ 2019-04-06 13:12 cicarius 阅读(435) 评论(0) 推荐(0) 编辑
摘要: 数组ArrayList 数组ArrayList容量本身是不固定的,根据存储的数据动态变化 输出ArrayList元素:每个放到ArrayList里的数组元素都会转换为object类型存放 排序 ArrayList的增加与删除元素 想ArrayList插入元素 删除ArrayList元素 arrLis 阅读全文
posted @ 2019-04-06 10:46 cicarius 阅读(635) 评论(0) 推荐(0) 编辑
摘要: 冒泡排序基础 冒泡排序原理图分析 tmp在算法中起到数据交换的作用 c int[] intNums = { 12,6,9,3,8,7 }; int tmp = intNums[0]; // 一共5次冒泡,从1开始 for(int i = 1; i intNums[j]) { tmp = intNum 阅读全文
posted @ 2019-04-06 09:25 cicarius 阅读(723) 评论(0) 推荐(0) 编辑
摘要: 数组定义 定义数组并赋值 求最大值最小值 在原有数组中新增 c int[] arrS = new int[4] { 12, 13, 14, 15 }; int[] tmp = new int[arrS.Length + 1]; //新增一个数据 for(int i = 0; i = 0) { int 阅读全文
posted @ 2019-04-06 06:59 cicarius 阅读(2240) 评论(0) 推荐(0) 编辑
摘要: while语句 for循环语句 c Console.WriteLine("请输入n的值"); int num = Convert.ToInt32(Console.ReadLine()); int sum = 0; for(int i = 0; i 阅读全文
posted @ 2019-04-03 15:27 cicarius 阅读(171) 评论(0) 推荐(0) 编辑
摘要: switch语句 阅读全文
posted @ 2019-04-03 15:17 cicarius 阅读(781) 评论(0) 推荐(0) 编辑
摘要: C 类型分为两种 值类型 bool sbyte(8位) short(8位) ushort() int uint long ulong char(16位) float double 引用类型 类 接口 委托 oject string 值类型与引用类型区别 值类型与引用类型转换 将int转化成oject 阅读全文
posted @ 2019-04-03 10:12 cicarius 阅读(445) 评论(0) 推荐(0) 编辑
摘要: U盘启动,联网 $ sudo su sudo add apt add apt repository ppa:yannubuntu/boot repair apt get update apt get install boot repair 在dash中搜索boot repair 点recommand 阅读全文
posted @ 2019-01-13 11:25 cicarius 阅读(867) 评论(0) 推荐(0) 编辑
摘要: tar 阅读全文
posted @ 2018-12-26 05:29 cicarius 阅读(424) 评论(0) 推荐(0) 编辑
摘要: 实现方法: SQLOject peewee Django's ORM SQLAlchemy 阅读全文
posted @ 2018-12-22 17:29 cicarius 阅读(194) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 18 下一页