⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 constructor.c

📁 linux下建立JAVA虚拟机的源码KAFFE
💻 C
字号:
/* * java.lang.reflect.Constructor.c * * Copyright (c) 1996, 1997, 2004 *	Transvirtual Technologies, Inc.  All rights reserved. * * See the file "license.terms" for information on usage and redistribution  * of this file.  */#include "config.h"#include "config-std.h"#include "config-mem.h"#include "gtypes.h"#include "access.h"#include "constants.h"#include "object.h"#include "classMethod.h"#include "itypes.h"#include "support.h"#include "baseClasses.h"#include "java_lang_reflect_Constructor.h"#include "java_lang_reflect_Method.h"#include <native.h>#include <jni.h>#include "defs.h"jintjava_lang_reflect_Constructor_getModifiers(struct Hjava_lang_reflect_Constructor* this){	Hjava_lang_Class* clazz;	jint slot;	clazz = unhand(this)->clazz;	slot = unhand(this)->slot;	assert(slot < CLASS_NMETHODS(clazz));	return (CLASS_METHODS(clazz)[slot].accflags & ACC_MASK);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -