这是我想做的
我有一堂课
class A {}
另一个类中有一个函数
class B
{
int count(object obj)
{
conn.table<T>..... //what I want is conn.table<A>, how to do with obj as object passed to the function
}
}
这就是我所说的计数
B b = new B();
b.Count(a); // where a is the object of class A
现在在计数函数中我想传递一个类名现在当我这样做时obj.getType()
我得到一个错误。