Java获取变量的数据类型
Posted 与f
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java获取变量的数据类型相关的知识,希望对你有一定的参考价值。
public class Int_String_Char { public static void main(String[] args) { byte a1=2; short a2=2; int a3=1; long a4=2L; System.out.println(getType(a1)); System.out.println(getType(a2)); System.out.println(getType(a3)); System.out.println(getType(a4)); float f=1.00f; double d=1.00d; System.out.println(getType(f)); System.out.println(getType(d)); boolean b=true; System.out.println(getType(b)); char c=‘a‘; System.out.println(getType(c)); String s="abc"; System.out.println(getType(s)); } private static String getType(Object a) { return a.getClass().toString(); } }
运行结果:
class java.lang.Byte
class java.lang.Short
class java.lang.Integer
class java.lang.Long
class java.lang.Float
class java.lang.Double
class java.lang.Boolean
class java.lang.Character
class java.lang.String
转 : https://blog.csdn.net/qq_36728361/article/details/89217682
以上是关于Java获取变量的数据类型的主要内容,如果未能解决你的问题,请参考以下文章
如何从 Firebase 获取数据到 Recyclerview 中的片段?
C#-WebForm-★内置对象简介★Request-获取请求对象Response相应请求对象Session全局变量(私有)Cookie全局变量(私有)Application全局公共变量Vi(代码片段