上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 29 下一页
摘要: 1基本的算术运算符 package com.itheima.operator; public class operator1 { public static void main(String[] args) { //目标:掌握基本的算术运算符的使用 int a=10; int b=2; System 阅读全文
posted @ 2023-11-16 09:00 小彭先森 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 大致实现了需要的功能,后面再继续努力完善,继续加油 阅读全文
posted @ 2023-11-15 20:33 小彭先森 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 1. 2. 代码: package com.itheima.type; public class Type3 { public static void main(String[] args) { //掌握强制类型转换 int a=20; //byte b=a; 报错,直接将类型范围大的变量转换为类型 阅读全文
posted @ 2023-11-13 16:56 小彭先森 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 1.表达式的自动类型转换: (1)在表达式中,小范围的变量,会自动转换为表达式中较大范围的类型,再参与运算 代码: package com.itheima.type; public class Type1 { public static void main(String[] args) { byte 阅读全文
posted @ 2023-11-13 16:20 小彭先森 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 1.自动类型转换机制:(1)类型范围小的变量,可以直接赋值给类型范围大 转换的可行性: 阅读全文
posted @ 2023-11-12 22:10 小彭先森 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 主要是进行了博欧排产系统的讨论总结了一下想法。 还是要继续努力学习。 阅读全文
posted @ 2023-11-12 22:10 小彭先森 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1.数据类型分类:(1)基本数据类型(2)引用数据类型 (1)基本数据类型:四大类八种 long lg=444444444444444L;//如果写一个整型字面量默认是long类型的,需要在后面加上L/l long lg=444444444444444L;//如果写一个整型字面量默认是long类型的 阅读全文
posted @ 2023-11-08 20:20 小彭先森 阅读(4) 评论(0) 推荐(0) 编辑
摘要: package com.itheima.note; import jdk.nashorn.internal.parser.JSONParser; public class NoteDemo { public static void main(String[] args) { //二进制,八进制,十六 阅读全文
posted @ 2023-11-08 19:59 小彭先森 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 1. 2.字符,图片,声音的存储说明 阅读全文
posted @ 2023-11-07 21:38 小彭先森 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 关键字:属于java语言自己的内容。java已经用了的词:public ,static等等 标识符: 标识符建议规范驼峰模式,例如:int studyNumber=4; 开头单词小写,后面的单词首字母大写 阅读全文
posted @ 2023-11-06 22:49 小彭先森 阅读(4) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 29 下一页