码迷,mamicode.com
首页 >  
搜索关键字:reflection    ( 912个结果
C#操作MySql数据库帮助类(Dapper,T-Sql)
using System.Text; using MySql.Data.MySqlClient; using System.Data; using Dapper; using System.Reflection; namespace DbHelper { public class MySqlHelp... ...
分类:移动开发   时间:2018-01-26 14:09:43    阅读次数:1011
Java基础——反射 reflect
什么是反射 (1)Java反射机制是在运行状态中,对于任意一个类,都能够知道这个类的所有属性和方法;对于任意一个对象,都能够调用它的任意一个方法和属性;这种动态获取的信息以及动态调用对象的方法的功能称为Java语言的反射机制。 (2)反射(Reflection)是Java程序开发语言的特征之一,它允 ...
分类:编程语言   时间:2018-01-26 01:39:11    阅读次数:256
mybatis报错invalid types () or values ()解决方法
报错信息:org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: Error instantiating class com.hu ...
分类:其他好文   时间:2018-01-22 11:16:40    阅读次数:209
c# emit 动态实现接口
using System; using System.Linq; using System.Reflection; using System.Reflection.Emit; namespace TestEmit{ public interface IPerson{ void SayHello();... ...
分类:Windows程序   时间:2018-01-14 14:30:19    阅读次数:358
c# emit 实现类的代理
using System; using System.Linq; using System.Reflection; using System.Reflection.Emit; namespace EmitCreateDynamicProxy { class Program { static void... ...
分类:Windows程序   时间:2018-01-14 14:28:43    阅读次数:247
Reflection (computer programming) -反射
n computer science, reflection is the ability of a computer program to examine, introspect, and modify its own structure and behavior at runtime.[1] A ...
分类:其他好文   时间:2018-01-12 20:28:23    阅读次数:213
https://stackoverflow.com/questions/16130292/java-lang-outofmemoryerror-permgen-space-java-reflection
https://stackoverflow.com/questions/16130292/java-lang-outofmemoryerror-permgen-space-java-reflection When using Java reflection, the JVM has two meth ...
分类:编程语言   时间:2018-01-01 11:25:46    阅读次数:195
根据类名如何获取一个类中字段属性和字段值
foreach (System.Reflection.PropertyInfo p in InvoiceList[i].GetType().GetProperties()) { object value = p.GetValue(InvoiceList[i], null); string Colum ...
分类:其他好文   时间:2017-12-29 15:21:15    阅读次数:225
C# 操作Excel 整理
0. 导入命名空间: using Microsoft.Office.Core; using Microsoft.Office.Interop.Excel; using System.IO; using System.Reflection; 0.合并竖着的单元格 ...
分类:Windows程序   时间:2017-12-28 19:42:44    阅读次数:235
PHP通过反射实现对象的成员方法调用
PHP通过反射实现对象的成员方法调用
分类:Web程序   时间:2017-12-22 23:56:55    阅读次数:162
912条   上一页 1 ... 22 23 24 25 26 ... 92 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!