当前位置:网站首页>进制与转换、关键字
进制与转换、关键字
2022-08-01 10:13:00 【菜鸟教程*…*】
进制与转换
计算机进制通常有:十进制、二进制、八进制、十六进制
short s1=10;
int s2 = s1+1;//要转换成int类型才可以
System.out.println(s2);
//byte short int 在计算时会自动转换为int类型
short s1=10;
s1=(short)(s1+b);
System.out.println(s1);
//把大的容量类型转换为小的容量类型,需要添加强制类型转换,有可能造成精度的降低或数据溢出,使用时要小心
int x =
关键字

转义字符

//转义字符;用于转义的符号是:\
public class Test4{
public static void main(String[] args){
System.out.print("转义字符测试");
System.out.print("我想输出一个回车符\n\r");
System.out.print("\t这是一个制表符");
System.out.print("\\");
System.out.print("\"双引号\"");
System.out.print("\'单引号\'")
}
}
边栏推荐
- Introduction and application of pointers
- Meeting OA (Upcoming Meetings & All Meetings)
- Basic configuration commands of cisco switches (what is the save command of Huawei switches)
- Naive Bayes--Study Notes--Basic Principles and Code Implementation
- 基于ModelArts的物体检测YOLOv3实践【玩转华为云】
- WPF 截图控件之绘制箭头(五)「仿微信」
- 世界第4疯狂的科学家,在103岁生日那天去世了
- 对于小应用来讲,使用哪款数据库比较好?
- 基于CAP组件实现补偿事务与消息幂等性
- How programmers learn open source projects, this article tells you
猜你喜欢

Naive Bayes--Study Notes--Basic Principles and Code Implementation

Small application project works WeChat gourmet recipes applet graduation design of finished product (1) the development profile

rpm and yum

AC与瘦AP的WLAN组网实验

企业微信群:机器人定时提醒功能数据库配置化

如何解决 chrome 浏览器标签过多无法查看到标题的情况

.NET性能优化-使用SourceGenerator-Logger记录日志

EasyRecovery热门免费数据检测修复软件

Qt 支持HEIC/HEIF格式图片

Shell: Conditional test action
随机推荐
C#/VB.NET 将PPT或PPTX转换为图像
MFC implementation road map navigation system
朴素贝叶斯--学习笔记--基本原理及代码实现
如何从完美的智能合约中窃取 1 亿美元
MTK6225-紧急电话
mysql在cmd的登录及数据库与表的基本操作
Shell: Conditional test action
小程序毕设作品之微信美食菜谱小程序毕业设计成品(1)开发概要
rpm and yum
URL.createObjectURL、URL.revokeObjectURL、Uint8Array、Blob使用详解
退役划水
【云驻共创】分布式技术之华为云全域调度技术与实践
retired paddling
Mini Program Graduation Works WeChat Food Recipes Mini Program Graduation Design Finished Products (2) Mini Program Functions
WPF 截图控件之绘制箭头(五)「仿微信」
深度学习 | MATLAB实现一维卷积神经网络convolution1dLayer参数设定
从零开始Blazor Server(4)--登录系统
redis
WPF 截图控件之绘制箭头(五)「仿微信」
基于ModelArts的物体检测YOLOv3实践【玩转华为云】