JAVA如何拼接数字

发布网友 发布时间:2022-04-25 07:12

我来回答

4个回答

热心网友 时间:2023-11-06 01:40

public class IntTest {
static int joint(int x, int y) {
// 为提高字符串拼接的效率,使用StringBuilder而不使用String
StringBuilder sb = new StringBuilder();

sb = sb.append(x);// 在字符串结尾添加入x
sb = sb.append(y);// 在字符串结尾添加入y
int result = -1;
try {
result = Integer.valueOf(sb.toString());// 将得到的字符串转为int类型
} catch (NumberFormatException e) {
}

// 返回-1表示操作失败
return result;
}

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
int result = joint(2, 4);// 调用函数
System.err.println(result);// 测试结果
}
}

热心网友 时间:2023-11-06 01:41

"2"+4;
“”+2+4
或Integer.toString(2) + 4;
总之把其中之一变成字符串形式就成,方法很多,呵呵

热心网友 时间:2023-11-06 01:41

很简单的一个方法就是:
int a= 2;
int b = 4;
String = a+""+b; // OK

好点的可以这样:
StringBuffer strbuf = new StringBuffer();
strbuf.append(2);
strbuf.append(4);
System.out.println(strbuf.toString);

热心网友 时间:2023-11-06 01:42

当成字符串接起来

热心网友 时间:2023-11-06 01:40

public class IntTest {
static int joint(int x, int y) {
// 为提高字符串拼接的效率,使用StringBuilder而不使用String
StringBuilder sb = new StringBuilder();

sb = sb.append(x);// 在字符串结尾添加入x
sb = sb.append(y);// 在字符串结尾添加入y
int result = -1;
try {
result = Integer.valueOf(sb.toString());// 将得到的字符串转为int类型
} catch (NumberFormatException e) {
}

// 返回-1表示操作失败
return result;
}

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
int result = joint(2, 4);// 调用函数
System.err.println(result);// 测试结果
}
}

热心网友 时间:2023-11-06 01:40

public class IntTest {
static int joint(int x, int y) {
// 为提高字符串拼接的效率,使用StringBuilder而不使用String
StringBuilder sb = new StringBuilder();

sb = sb.append(x);// 在字符串结尾添加入x
sb = sb.append(y);// 在字符串结尾添加入y
int result = -1;
try {
result = Integer.valueOf(sb.toString());// 将得到的字符串转为int类型
} catch (NumberFormatException e) {
}

// 返回-1表示操作失败
return result;
}

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
int result = joint(2, 4);// 调用函数
System.err.println(result);// 测试结果
}
}

热心网友 时间:2023-11-06 01:41

"2"+4;
“”+2+4
或Integer.toString(2) + 4;
总之把其中之一变成字符串形式就成,方法很多,呵呵

热心网友 时间:2023-11-06 01:41

"2"+4;
“”+2+4
或Integer.toString(2) + 4;
总之把其中之一变成字符串形式就成,方法很多,呵呵

热心网友 时间:2023-11-06 01:41

很简单的一个方法就是:
int a= 2;
int b = 4;
String = a+""+b; // OK

好点的可以这样:
StringBuffer strbuf = new StringBuffer();
strbuf.append(2);
strbuf.append(4);
System.out.println(strbuf.toString);

热心网友 时间:2023-11-06 01:42

当成字符串接起来

热心网友 时间:2023-11-06 01:40

public class IntTest {
static int joint(int x, int y) {
// 为提高字符串拼接的效率,使用StringBuilder而不使用String
StringBuilder sb = new StringBuilder();

sb = sb.append(x);// 在字符串结尾添加入x
sb = sb.append(y);// 在字符串结尾添加入y
int result = -1;
try {
result = Integer.valueOf(sb.toString());// 将得到的字符串转为int类型
} catch (NumberFormatException e) {
}

// 返回-1表示操作失败
return result;
}

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
int result = joint(2, 4);// 调用函数
System.err.println(result);// 测试结果
}
}

热心网友 时间:2023-11-06 01:40

public class IntTest {
static int joint(int x, int y) {
// 为提高字符串拼接的效率,使用StringBuilder而不使用String
StringBuilder sb = new StringBuilder();

sb = sb.append(x);// 在字符串结尾添加入x
sb = sb.append(y);// 在字符串结尾添加入y
int result = -1;
try {
result = Integer.valueOf(sb.toString());// 将得到的字符串转为int类型
} catch (NumberFormatException e) {
}

// 返回-1表示操作失败
return result;
}

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
int result = joint(2, 4);// 调用函数
System.err.println(result);// 测试结果
}
}

热心网友 时间:2023-11-06 01:41

"2"+4;
“”+2+4
或Integer.toString(2) + 4;
总之把其中之一变成字符串形式就成,方法很多,呵呵

热心网友 时间:2023-11-06 01:41

很简单的一个方法就是:
int a= 2;
int b = 4;
String = a+""+b; // OK

好点的可以这样:
StringBuffer strbuf = new StringBuffer();
strbuf.append(2);
strbuf.append(4);
System.out.println(strbuf.toString);

热心网友 时间:2023-11-06 01:41

很简单的一个方法就是:
int a= 2;
int b = 4;
String = a+""+b; // OK

好点的可以这样:
StringBuffer strbuf = new StringBuffer();
strbuf.append(2);
strbuf.append(4);
System.out.println(strbuf.toString);

热心网友 时间:2023-11-06 01:42

当成字符串接起来

热心网友 时间:2023-11-06 01:41

"2"+4;
“”+2+4
或Integer.toString(2) + 4;
总之把其中之一变成字符串形式就成,方法很多,呵呵

热心网友 时间:2023-11-06 01:40

public class IntTest {
static int joint(int x, int y) {
// 为提高字符串拼接的效率,使用StringBuilder而不使用String
StringBuilder sb = new StringBuilder();

sb = sb.append(x);// 在字符串结尾添加入x
sb = sb.append(y);// 在字符串结尾添加入y
int result = -1;
try {
result = Integer.valueOf(sb.toString());// 将得到的字符串转为int类型
} catch (NumberFormatException e) {
}

// 返回-1表示操作失败
return result;
}

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
int result = joint(2, 4);// 调用函数
System.err.println(result);// 测试结果
}
}

热心网友 时间:2023-11-06 01:41

"2"+4;
“”+2+4
或Integer.toString(2) + 4;
总之把其中之一变成字符串形式就成,方法很多,呵呵

热心网友 时间:2023-11-06 01:41

很简单的一个方法就是:
int a= 2;
int b = 4;
String = a+""+b; // OK

好点的可以这样:
StringBuffer strbuf = new StringBuffer();
strbuf.append(2);
strbuf.append(4);
System.out.println(strbuf.toString);

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com