Java变量

变量

​ 变量是程序的基本组成单位

变量的介绍

  • 概念

    变量相当于内存中一个数据存储空间的表示,你可以把变量看做是一个房间的门牌号,通过门牌号我们可以找到房间,而通过变量名可以访问到变量(值)。

01:

class Test
{public static void main(String[] args){int a = 1;int b = 3;b = 89;System.out.println(a);System.out.println(b);}
}

02:

public class Var01
{public static void main(String[] args){int a;a = 100;System.out.println(a);int b = 800;System.out.println(b);}
}

03:

public class Var01
{public static void main(String [] args){int age = 20;double score = 88.6;char gender = '男';String name = "jack";System.out.println("人的信息如下:");System.out.println(age);System.out.println(score);System.out.println(gender);System.out.println(name);}
}

变量使用注意事项

在这里插入图片描述

程序中+号的使用

01:

System.out.println(100+98);//198
System.out.println("100"+98);//10098System.out.println(100+3+"hello");//103hello
System.out.println("hello"+100+3);//hello1003

数据类型

每一种数据都定义了明确的数据类型,在内存中分配了不同大小的内存空间(字节)。

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-FbrdnBSE-1634562064221)(C:\Users\Tom\AppData\Roaming\Typora\typora-user-images\image-20210906105130378.png)]

上图说明(背)

Java 的两大数据类型:

  • 基本数据类型

    数值型[byte,short,int,long,float,double]

    char,boolean

  • 引用类型

    类,接口,数组

整数类型

  • 基本介绍

    java的整数类型就是用于存放整数值的,比如12,30,3456等等

01:

byte n1 = 10;//一个字节的空间
short n2 = 10;//两个字节的空间

在这里插入图片描述

整型的使用细节

在这里插入图片描述

01:

public class InterTest {public static void main(String[] args){//Java的整数常量(具体值)默认为int型,声明long型常量须加‘l’或‘L’int n1 = 1;//4个字节//int n2 = 1l;//error 不兼容类型,从long转换到int可能会有损失long n2 = 1l;}
}

02:

byte n1 = 3;
short n2 = 3;

在这里插入图片描述

浮点类型

  • 基本介绍

    Java的浮点类型可以表示一个小数,比如123.4,7.8,0.12等等

浮点型的分类

在这里插入图片描述

浮点类型使用细节

在这里插入图片描述

01:

public class FloatTest {public static void main(String[] args){//Java的浮点型常量(具体值)默认为double型,声明float型常量,须后加‘f’或‘F’// float num01 = 1.1;//error 默认不写为double double转float会有精度损失float num01 = 1.1f;double num02 = 1.1;double num03 = 1.1f;//correct//十进制数形式double num5 = 0.123;double num6 = .123;//等价0.123System.out.println(num6);//0.123//科学计数法形式System.out.println(5.12e2);//512.0System.out.println(5.12E-2);//0.0512}
}

02:

public class FloatTest {public static void main(String[] args){double num01 = 2.1234567851;float num02 = 2.1234567851f;System.out.println(num01);System.out.println(num02);}
}

结果如下:
在这里插入图片描述

03:

public class FloatTest {public static void main(String[] args){double num01 = 2.7;double num02 = 8.1/3;System.out.println(num01);//2.7System.out.println(num02);//2.6999999999999997}
}

得到一个重要的使用点:

当我们对运算结果是小数的进行相等判断时,要小心

public class FloatTest {public static void main(String[] args){double num01 = 2.7;double num02 = 8.1/3;System.out.println(num01);//2.7System.out.println(num02);//2.6999999999999997if (num01 ==num02){System.out.println("true");}else{System.out.println("false");}}
}

结果如下:

在这里插入图片描述
我们应该以两个数的差值的绝对值,在某个精度范围内判断

public class FloatTest {public static void main(String[] args){double num01 = 2.7;double num02 = 8.1/3;System.out.println(num01);//2.7System.out.println(num02);//2.6999999999999997//        if (num01 ==num02)
//        {
//            System.out.println("true");
//        }
//        else
//        {
//            System.out.println("false");
//        }if (Math.abs(num01-num02) < 0.000001){System.out.println("true");}else{System.out.println("false");}}
}

结果如下:

在这里插入图片描述

另外,如果是直接查询得到的小数或者直接赋值,是可以判断相等。

字符类型(char)

  • 基本介绍

    字符类型可以表示单个字符,字符类型是char,char是两个字节(可存放汉字),多个字符我们用字符串String。

01:

public class CharTest {public static void main(String [] args){char c1 = 'a';char c2 = '\t';char c3 = '唐';char c4 = 97;System.out.println(c1);System.out.println(c2);System.out.println(c3);System.out.println(c4);}
}

结果如下:

在这里插入图片描述

字符类型使用细节

在这里插入图片描述

01:

public class CharTest {public static void main(String [] args){char c1 = 97;System.out.println(c1);char c2 = 'a';System.out.println((int)c2);char c3 = '唐';System.out.println((int)c3);System.out.println(c3);}
}

结果如下:

在这里插入图片描述

02:

public class CharTest {public static void main(String [] args){System.out.println('a'+10);//107}
}

字符类型本质探讨

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

布尔类型:boolean

在这里插入图片描述

01:

public class BooleanTest {public static void main(String[] args){boolean isPass = true;if (isPass==true){System.out.println("Pass");}else{System.out.println("No Pass");}}
}

使用细节说明

boolean isPass = 0;//error
  • 不可以用0或非0的整数替代false和true,这点和c语言不同。

基本数据类型转换

在这里插入图片描述

01:

public class ConvertTest {public static void main(String[] args){int num = 'a';double d1 = 80;System.out.println(num);//97System.out.println(d1);//80.0}
}

自动类型转换注意和细节

在这里插入图片描述

  • 有多种类型的数据混合运算时,系统首先自动将所有数据转换成容量最大的那种数据类型,然后再进行计算。
public class ConvertTest {public static void main(String[] args){int n1  = 10;//float d1 = n1+1.1; //error double -> float 精度损失double d1 = n1+1.1;double d2 =n1+1.1f;}
}
  • 当我们把精度(容量)大的数据类型赋值给精度(容量)小的数据类型时就会报错,反之就会进行自动类型转换。
 //int n2 = 1.1;//error double -> int 
  • (byte,short)和char之间不会相互自动转换
byte b1 = 10;
char c1 = b1;//error 原因:byte 不能自动转成char
  • 当把具体数赋值给byte时,先判断该数是否在byte范围内,如果是就可以,如果是变量赋值,判断类型。
byte b0 = 1000;//error 超过范围
byte b1 = 10;//-128 ~ 127
int n2 = 1;//n2 is int
byte b2 = n2;//error int -> byte 精度损失
  • byte,short,char它们三者之间可以计算,在计算时首先转换为int类型。
public class ConvertTest {public static void main(String[] args){byte b2 = 1;byte b3 = 2;short s1 = 1;short s2 = b2+s1;//error b2+s1 => intint s3 = b2+s1;//correctbyte b4 = b2+b3;//error b2+b3 => int int -> byte 精度损失}
}
  • boolean不参与转换
boolean pass = true;
int num100 = pass;//error boolean不参与类型的自动转换
  • 自动提升原则:表达式结果的类型自动提升为操作数中最大的类型。
byte b4 = 1;
short s3 = 100;
int num200 = 1;
double num300 = 1.1;double num500 = b4 + s3 + num200 +num300;//b4 + s3 + num200 + num300 => double
byte b4 = 1;
short s3 = 100;
int num200 = 1;
float num300 = 1.1f;int  num500 = b4 + s3 + num200 +num300;//error float -> int double num500 = b4 + s3 + num200 +num300;//correct

强制类型转换

  • 自动类型转换的逆过程,将容量大的数据类型转换为容量小的数据类型。使用时要加上强制转换符(),但可能造成精度降低或溢出,格外要注意。

  • 案例演示

public class ConvertTest {public static void main(String[] args){int n1 = (int)1.9;System.out.println("n1 = "+n1);//n1 = 1 造成精度损失int n2 = 2000;byte b1 = (byte)n2;System.out.println("b1 = "+b1);//b1 = -48 造成数据溢出}
}

强制类型转换

  • 当进行数据的大小从大到小,就需要使用到强制转换
  • 强制符号只针对于最近的操作数有效,往往会使用小括号提升优先级
public class ConvertTest {public static void main(String[] args){//int x = (int)10*3.5+6*1.5;//error double -> intint x = (int)(10*3.5+6*1.5);//(int)44.0 -> 44System.out.println(x);//44}
}
  • char类型可以保存int的常量值,但不能保存int的变量值,需要强转
public class ConvertTest {public static void main(String[] args){char c1 = 100;//okint m = 100;//ok//char c2 = m;//errorchar c3 = (char)m;//okSystem.out.println(c3);//d}
}
  • byte和short类型在进行运算时,当做int类型处理

example:

short s = 12;//ok
s = s-9;//error int -> shortbyte b = 10;//ok
b = b+11;//error int -> byte
b = (byte)(b+11);//okchar c = 'a';//ok
int i = 16;//ok
float d = .314f;//ok
double res = c+i+d;//ok float -> double byte b = 16;//ok
short s = 14;//ok
short t = s+b;//error int -> short

基本数据类型和String类型的转换

  • 介绍

在程序开发中,我们经常需要将基本数据类型转成String类型。或者将String类型转换成基本数据类型。

  • 基本类型转String类型

01:

public class StringToBasic
{public static void main(String[] args){//Basic -> Stringint n1 = 100;float f1 = 1.1f;double d1 = 4.5;boolean b1 = true;String s1 = n1+"";String s2 = f1+"";String s3 = d1+"";String s4 = b1+"";System.out.println(s1+" "+s2+" "+s3+" "+s4+" ");}
}
  • String类型转基本数据类型

语法:通过基本类型的包装类调用parseXX方法即可

01:

public class ConvertTest {public static void main(String[] args){String s1 = "123";int num1 = Integer.parseInt(s1);double num2 = Double.parseDouble(s1);float num3 = Float.parseFloat(s1);long num4 = Long.parseLong(s1);byte num5 = Byte.parseByte(s1);boolean b = Boolean.parseBoolean("true");short num6 = Short.parseShort(s1);}
}
  • 字符串转成字符char

含义:得到字符串的第一个字符

System.out.println("s1.charAt(0)");//1

注意事项

在这里插入图片描述

public class ConvertTest {public static void main(String[] args){String str = "hello";int n1 = Integer.parseInt(str);System.out.println(n1);}
}

报错如下:

Exception in thread "main" java.lang.NumberFormatException: For input string: "hello"at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:67)at java.base/java.lang.Integer.parseInt(Integer.java:660)at java.base/java.lang.Integer.parseInt(Integer.java:778)at ConvertTest.ConvertTest.main(ConvertTest.java:7)

小作业

01:

public class WorkTestDemo {public static void main(String[] args){int n1;n1 = 13;int n2;n2 = 17;int n3;n3 = n1+n2;System.out.println("n3 = "+n3);//30int n4 = 38;int n5 = n4-n3;System.out.println("n5 = "+n5);//8}
}

在这里插入图片描述

02:

public class WorkTestDemo {public static void main(String[] args){char c1 = '\n';//换行char c2 = '\t';//制表位char c3 = '\r';//回车char c4 = '\\';//输出\char c5 = '1';char c6 = '2';char c7 = '3';System.out.println(c1);System.out.println(c2);System.out.println(c3);System.out.println(c4);System.out.println(c5);System.out.println(c6);System.out.println(c7);}
}

结果如下:
在这里插入图片描述

03:

public class WorkTestDemo {public static void main(String[] args){String book1 = "天龙八部";String book2 = "笑傲江湖";System.out.println(book1+book2);//天龙八部笑傲江湖char c1 = '男';char c2 = '女';System.out.println(c1+c2);//得到 男 字符码值 + 女 字符码值double price01 = 123.56;double price02 = 100.11;System.out.println(price01+price02);}
}

结果如下:

在这里插入图片描述

04:

public class WorkTestDemo {public static void main(String[] args){String name = "jack";int age = 20;double score = 80.9;char gender = '男';String hobby = "打篮球";System.out.println("姓名\t年龄\t成绩\t性别\t爱好\n" + name +"\t"+age +"\t"+ score+"\t" +gender +"\t"+hobby);}
}

Java API 文档

有时间再写!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/309118.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

[Student.Achieve] 学生教务管理系统开源

&#xff08;源自&#xff1a;https://neters.club&#xff09;一觉醒来Github改版了&#xff0c;我个人还是挺喜欢的????。还有两个月就是老张做开源两周年了&#xff0c;时间真快&#xff0c;也慢慢的贡献了很多的开源作品&#xff0c;上边的是主要的七个作品&#xff0c…

.NET Core HttpClient源码探究

前言在之前的文章我们介绍过HttpClient相关的服务发现&#xff0c;确实HttpClient是目前.NET Core进行Http网络编程的的主要手段。在之前的介绍中也看到了&#xff0c;我们使用了一个很重要的抽象HttpMessageHandler&#xff0c;接下来我们就探究一下HttpClient源码&#xff0c…

Java 多线程:线程优先级

1 优先级取值范围 Java 线程优先级使用 1 ~ 10 的整数表示&#xff1a; 最低优先级 1&#xff1a;Thread.MIN_PRIORITY 最高优先级 10&#xff1a;Thread.MAX_PRIORITY 普通优先级 5&#xff1a;Thread.NORM_PRIORITY 2 获取线程优先级 public static void main(String[]…

《Unit Testing》1.1 -1.2 单元测试的目的

本系列是《Unit Testing》 一书的读书笔记 精华提取。书中的例子 C# 语言编写&#xff0c;但概念是通用的&#xff0c;只要懂得面向对象编程就可以。 单元测试当前的状态目前&#xff0c;在&#xff08;美国的&#xff09;大部分公司里&#xff0c;单元测试都是强制性的。生产…

Java Exception

Exception 异常捕获 将代码块选中->ctrlaltt->选中try-catch 01: public class Exception01 {public static void main(String[] args) {int n1 10;int n2 0;try {int res n1/n2;} catch (Exception e) { // e.printStackTrace();System.out.println(e.…

《Unit Testing》1.3 使用覆盖率指标来度量测试套件的好坏

使用覆盖率来度量测试套件&#xff08;Test Suite&#xff09;的质量有两种比较流行的测试覆盖率的度量方法&#xff1a;代码覆盖率分支覆盖率覆盖率度量会显示一个测试套件&#xff08;Test Suite&#xff09;会执行多少代码&#xff0c;范围从 0 至 100%。除了上述两种方法之…

Linux创始人:v5.8是有史以来最大的发行版之一

导语Linux v5.8已经修改了所有文件的20&#xff05;&#xff0c;是迄今为止变化最大的一次发行版。正文Linux创始人Linus Torvalds表示&#xff1a;Linux内核5.8版是“我们有史以来最大的发行版之一”。如果一切顺利&#xff0c;Linux v5.8稳定版应该在2020年8月的某个时候出现…

[高等数学]这你不背?

求导及求微分的基本公式: 泰勒中值定理: 麦克劳林公式: 不定积分公式: 凑微分: 第二类换元积分法常用的三种情况: 求高阶导数的几个公式: 二阶常系数非齐次线性微分方程的特解: 排列组合公式: C的计算&#xff1a; 下标的数字乘以上标的数字的个数,且每个数字都要-1.再除以上标…

怎么开会才不浪费时间?

这里是Z哥的个人公众号每周五11&#xff1a;45 按时送达当然了&#xff0c;也会时不时加个餐&#xff5e;我的第「148」篇原创敬上大家好&#xff0c;我是Z哥&#xff0c;先祝大家端午节日快乐。节日期间就发篇比较短的文章吧。人在职场混&#xff0c;开会应该是本职工作之外花…

.NET 5.0预览版6发布:支持Windows ARM64设备

2020年6月25日&#xff0c;微软dotnet团队在博客宣布了第六个 .NET 5.0 的预览版&#xff1a;https://devblogs.microsoft.com/dotnet/announcing-net-5-0-preview-6/&#xff0c;在改进性能的同时增加了一些新的功能。ASP.NET Core和 EF Core也将于今日发布了。注意&#xff1…

利用真值表法求取主析取范式以及主合取范式的实现(C++)

代码如下: #include <iostream> #include <stack> #include <string> #include <vector> using namespace std; const int N 300; stack<char> s; stack<char> v; int seq; bool vis[N]; bool flag[N]; void dfs(int n); vector<int&…

基于 Blazor 开发五子棋小游戏

今天是农历五月初五&#xff0c;端午节。在此&#xff0c;祝大家端午安康&#xff01;端午节是中华民族古老的传统节日之一。端午也称端五&#xff0c;端阳。此外&#xff0c;端午节还有许多别称&#xff0c;如&#xff1a;午日节、重五节、五月节、浴兰节、女儿节、天中节、地…

汇编cmp比较指令详解

刚刚看到了cmp指令&#xff0c;一开始有点晕。后来上网找了些资料&#xff0c;终于看明白了&#xff0c;为了方便初学者&#xff0c;我就简单写下我的思路吧。高手绕过&#xff0c;谢谢&#xff01; cmp(compare)指令进行比较两个操作数的大小例:cmp oprd1,oprd2为第一个操作减…

如何在ASP.NET Core中使用SignalR构建与Angular通信的实时通信应用程序

图片假设我们要创建一个监视Web应用程序&#xff0c;该应用程序为用户提供了一个能够显示一系列信息的仪表板&#xff0c;这些信息会随着时间的推移而更新。第一种方法是在定义的时间间隔&#xff08;轮询&#xff09;定期调用API 以更新仪表板上的数据。无论如何&#xff0c;还…

LED计数电路,5输入按键编码器,7段数码管显示驱动集成为LED计数测试电路

LED计数电路: 5输入按键编码器: 7段数码管显示驱动真值表: 集成:

越卖越涨?腾讯股票3月后大涨45%,超越“阿里”成中国第一,市值相当于14.3个百度!...

01 腾讯股价大涨据股市最新消息&#xff1a;腾讯股价已连续3个交易日上涨, 其中6月22日腾讯股价重返470港元关口&#xff0c;公司市值突破4.5万亿港元&#xff0c;折合4.0万亿人民币&#xff1b;而6月23日上午腾讯股价再度大涨4.05%&#xff0c;刷出493.8港元的新高&#xf…

4位无符号比较器设计

4位比较器原理&#xff1a; 4位比较 a3a2a1a0 : b3b2b1b0&#xff0c;比较顺序从高位到低位&#xff0c;当高位大、小关系确定时则无需看低位&#xff0c;当高位相等时再看相邻低位的关系。 注意&#xff1a;对于三个比较结果&#xff0c;已知其中任意两个&#xff0c;可以用…

关于技术文章“标题党”一事我想说两句

阅读本文大概需要 1.8 分钟。前天发表的一篇文章&#xff0c;标题是&#xff1a;“面试官&#xff1a;你刚说你喜欢研究新技术&#xff0c;那么请说说你对 Blazor 的了解”。确实&#xff0c;这篇文章有标题党的味道&#xff0c;如果因此给部分童鞋带来不适&#xff0c;我在这先…