代码搜索:reflection
找到约 10,000 项符合「reflection」的源代码
代码结果 10,000
www.eeworm.com/read/332978/7141762
java reflection.java
//: enumerated/Reflection.java
// Analyzing enums using reflection.
import java.lang.reflect.*;
import java.util.*;
import net.mindview.util.*;
import static net.mindview.util.Print.*;
enum Ex
www.eeworm.com/read/435925/7780902
suo reflection.suo
www.eeworm.com/read/435925/7780906
cpp reflection.cpp
#include "Reflection.h"
#include "TypesWrapper.h"
#include "Transformation.h"
#include "TransformHelper.h"
#include "Conversion.h"
#include "ConversionHelper.h"
void IReflection::Update(void*
www.eeworm.com/read/435925/7780911
h reflection.h
#ifndef __Reflection_H
#define __Reflection_H
#include
#include
using namespace std;
#ifndef null
#define null 0
#endif
#include "TypesWrapper.h"
#include "Destroyer.h
www.eeworm.com/read/435925/7780912
sln reflection.sln
Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Reflection", "Reflection.vcproj", "{EC5D9DD5-55A2-4C51-B12D-2
www.eeworm.com/read/196763/8061616
txt reflection.txt
反射框架
通用编程,运行时通过类对象操作对象
Class:描述一个类的信息
Field:描述属性的信息
Method:描述方法信息
Constructor:描述构造方法信息
表示一个参数表:Class[] 参数类型对应一个类对象
Class c
c.newInstance() 通过类对象,构造一个类的对象
Method m
m.inkove(o) 通过方法对象,