2022年7月24日

摘要: 计算机的最基本用途之一就是执行数学运算,作为一门计算机语言,Java也提供了一套丰富的运算符来操纵变量。我们可以把运算符分成以下几组: 算术运算符 关系运算符 位运算符 逻辑运算符 赋值运算符 其他运算符 算术运算符 算术运算符用在数学表达式中,它们的作用和在数学中的作用一样。下表列出了所有的算术运 阅读全文
posted @ 2022-07-24 10:48 哦路几马路 阅读(40) 评论(0) 推荐(0) 编辑
 
摘要: 变量 java是强类型语言,每个变量必须声明类型 java变量是最基本的储存单元,要素包括变量名,变量类型,和作用域。 定义方法 type varName = 值; 1 public class various2 { 2 // 类变量 static 3 static double salary = 阅读全文
posted @ 2022-07-24 10:47 哦路几马路 阅读(16) 评论(0) 推荐(0) 编辑
 
摘要: java是强类型语言,所以有些运算需要用到类型转换。 精度 低 高 byte,short,char,int,long,float,double 运算中,不同类型先转换为同一类型,再计算。 例如: 1 public class data_cast { 2 public static void main 阅读全文
posted @ 2022-07-24 10:45 哦路几马路 阅读(24) 评论(0) 推荐(0) 编辑
 
摘要: public class data_formpro { public static void main(String[] args) { // // 数字拓展 // int i = 10; // int i1 = 0b10; //二进制0b // int i2 = 010; //八进制0 // in 阅读全文
posted @ 2022-07-24 10:43 哦路几马路 阅读(15) 评论(0) 推荐(0) 编辑
 
摘要: 基本类型(primitive type) 整数 byte 1个字节 -128 127 short 2个字节 -32768 32767 int 4个字节 -21.4亿 21.4亿 long 8个字节 浮点数 float 4个字节 double 8个字节 字符类型 char 2个字节 Boolean类型 阅读全文
posted @ 2022-07-24 10:42 哦路几马路 阅读(28) 评论(0) 推荐(0) 编辑
 
摘要: 1 public class variable { 2 public static void main(String[] args) { 3 String Author = "fhy"; 4 String _name = "fhy"; 5 String $MMM = "AAA"; 6 String 阅读全文
posted @ 2022-07-24 10:41 哦路几马路 阅读(64) 评论(0) 推荐(0) 编辑
 
摘要: 一、注释 1 public class comment { 2 public static void main(String[] args) { 3 // 这是单行注释,下边的输出,只能双引号,单引号输出不了,会报错 4 System.out.println("hello world"); 5 /* 阅读全文
posted @ 2022-07-24 10:37 哦路几马路 阅读(14) 评论(0) 推荐(0) 编辑
 

2022年7月17日

摘要: Markdown学习 标题 一级标题 # 标题名 二级标题 ## 标题名 三级标题 字体 你好 两边加 一个星号 即Ctrl+8 你好 两边加 两个星号 即Ctrl+8 你好 两边加 三个星号 即Ctrl+8 你好 两边加 两个波浪线 即shift+~ 引用 我的Markdowm日记,摘抄的时候用 阅读全文
posted @ 2022-07-17 20:25 哦路几马路 阅读(34) 评论(0) 推荐(0) 编辑