本文目录一览:
JAVA温度补0问题?
你这个需求比较特殊,像1.2 - 01.2,01.2已经不是正常的数字了(正常数字整数部分左侧不能有零),拿只能当字符串来处理了。代码如下:
public class Test {
public static void main(String[] args) {
handle("1.2");
handle("-1.23");
handle("-12.1");
handle("-1.2");
handle("11");
}
private static void handle(String temperature) {
String[] temp = temperature.split("\\.");
if (temp.length == 1) {//无小数点
//整数直接在前面补零
temp[0] = String.format("%03d", Integer.valueOf(temp[0]));
System.out.println(temperature + " - " + temp[0]);
} else if (temp.length == 2) {//有小数点
if (temp[0].startsWith("-")) {//是负数
temp[0] = temp[0].substring(1, temp[0].length());//先去掉负号
if (temp[0].length() + temp[1].length() 3) {//当整数部分长度和小数部分长度相加不足三位时,如1.2,则整数部分补(3-小数部分位数)个零
temp[0] = String.format("%0" + (3 - temp[1].length()) + "d", Integer.valueOf(temp[0]));
}
System.out.println(temperature + " - " + "-" + temp[0] + "." + temp[1]);
} else {//是正数
if (temp[0].length() + temp[1].length() 3) {//当整数部分长度和小数部分长度相加不足三位时,如1.2,则整数部分补(3-小数部分位数)个零
temp[0] = String.format("%0" + (3 - temp[1].length()) + "d", Integer.valueOf(temp[0]));
}
System.out.println(temperature + " - " + temp[0] + "." + temp[1]);
}
}
}
}
运行结果:
Java中,位运算符>>,右移时左边何时补0,何时补1
在Thinking in Java第三章中的一段话:
移位运算符面向的运算对象也是二进制的“位”。可单独用它们处理整数类型(主类型的一种)。左移位运算符()能将运算符左边的运算对象向左移动运算符右侧指定的位数(在低位补0)。“有符号”右移位运算符()则将运算符左边的运算对象向右移动运算符右侧指定的位数。“有符号”右移位运算符使用了“符号扩展”:若值为正,则在高位插入0;若值为负,则在高位插入1。Java也添加了一种“无符号”右移位运算符(),它使用了“零扩展”:无论正负,都在高位插入0。这一运算符是C或C++没有的。
若对char,byte或者short进行移位处理,那么在移位进行之前,它们会自动转换成一个int。只有右侧的5个低位才会用到。这样可防止我们在一个int数里移动不切实际的位数。若对一个long值进行处理,最后得到的结果也是long。此时只会用到右侧的6个低位,防止移动超过long值里现成的位数。但在进行“无符号”右移位时,也可能遇到一个问题。若对byte或short值进行右移位运算,得到的可能不是正确的结果(Java 1.0和Java 1.1特别突出)。它们会自动转换成int类型,并进行右移位。但“零扩展”不会发生,所以在那些情况下会得到-1的结果。
java的字符型数组补零
import java.util.Scanner;
public class T
{
public static void main(String[] args)
{
int n;
System.out.print("请输入数组a的长度:");
Scanner sc = new Scanner(System.in);
n=sc.nextInt();
char[] a = new char[n];
char[] b = new char[200];
for(int i=0;in;i++)
a[i]='1';
for (int i = 0; i 200; i++)
b[i]='0';
for(int j=0;jn;j++)
b[199-j]=a[j];
System.out.println(b);
}
}
java数字自动补零
你在数字前面拼三个000,然后取后面三位就好了。
public class Test {
public static void main(String[] args) {
int i = 6;
int j = 10;
System.out.println("i==" + codeFormat(i));
System.out.println("i==" + codeFormat(j));
}
public static String codeFormat(int i) {
String str = "000" + String.valueOf(i);
return str.substring(str.length()-3);
}
}