java field_Java Field getDeclaringClass()用法及代码示例

java.lang.reflect.Field的getDeclaringClass()方法用于获取Class对象,该对象声明此Field对象表示的字段。如果存在Field对象,并且我们想要获取类对象,则可以使用此方法获取该类对象。

用法:

public Class getDeclaringClass()

参数:此方法不接受任何内容。

返回值:此方法返回一个对象,该对象表示基础成员的声明类。

以下示例程序旨在说明getDeclaringClass()方法:

示例1:

// Java program to demonstrate the above method

import java.lang.reflect.Field;

public class GFG {

public static void main(String[] args)

throws NoSuchFieldException,

SecurityException

{

// Get the value field object

Field field

= User.class

.getField("identificationChar");

// get the declaring class object

Class declaringClass

= field.getDeclaringClass();

// print result

System.out.println("Declaring Class"

+ " for Field Object: "

+ declaringClass);

}

}

// sample User class

class User {

// static char values

public static char identificationChar = 'E';

public static char selectionChar = 'A';

public static String name = "Aman";

// getter and setter methods

public static char getIdentificationChar()

{

return identificationChar;

}

public static void

setIdentificationChar(char identificationChar)

{

User.identificationChar = identificationChar;

}

public static char getSelectionChar()

{

return selectionChar;

}

public static void

setSelectionChar(char selectionChar)

{

User.selectionChar = selectionChar;

}

public static String getName()

{

return name;

}

public static void setName(String name)

{

User.name = name;

}

}

输出:

Declaring Class for Field Object: class User

示例2:

// Java program to demonstrate the above method

import java.lang.reflect.Field;

import java.lang.reflect.Field;

public class GFG {

public static void main(String[] args)

throws NoSuchFieldException,

SecurityException

{

// Get the value field object

Field field

= Alphabets.class.getField("value");

// get the declaring class object

Class declaringClass

= field.getDeclaringClass();

// print result

System.out.println("Declaring Class: "

+ declaringClass);

}

// Alphabets class

static class Alphabets {

// char field

public static char value = 'Q';

// getter and setter methods

public static char getValue()

{

return value;

}

public static void setValue(char value)

{

Alphabets.value = value;

}

}

}

输出:

Declaring Class: class GFG$Alphabets

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值