Java 测试返回值为不同类型的写法

测试返回值为不同类型的写法

public class Demo02 {

//程序执行的入口,主方法
public static void main(String[] args) {
	System.out.println(aaa());
	System.out.println(bbb());
	System.out.println(ccc());
	System.out.println(ddd());
	System.out.println(eee());
	System.out.println(fff());
	System.out.println(ggg());
	System.out.println(hhh());
	System.out.println(iii());
	System.out.println(jjj());
}

//定义返回值类型为void的方法
public static void kkk() {
	return;
}

//定义返回值类型为数组类型的方法
public static int[] jjj() {
	int[] arr = {1,2,3};
	return arr;
}

//定义返回值类型为String(字符串)类型的方法
public static String iii() {
	return "约吗";
}

//定义返回值类型为char类型的方法
public static char hhh() {
	return 'a';
}

//定义返回值类型为boolean类型的方法
public static boolean ggg() {
	return false;//true
}

//定义返回值类型为float类型的方法
public static float eee() {
	return 12.5F;
}

//定义返回值类型为double类型的方法
public static double fff() {
	return 12.5;
}

//定义返回值类型为byte类型的方法
public static byte aaa() {
	return 12;
}

//定义返回值类型为short类型的方法
public static short bbb() {
	return 12;
}

//定义返回值类型为int类型的方法
public static int ccc() {
	return 12;
}

//定义返回值类型为long类型的方法
public static long ddd() {
	return 12L;
}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

喜龙的小博站

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值