我知道Cursor
有 getString, Int
等方法,但没有类似的东西
mycursor.GetObject(index)
我想创建一个返回对象的动态方法,我只转换它。
还是可以
mycursor.GetString(index)
用于任何类型? String,Float,Double,Long,Short, Blob,Int
,ETC
我可以使用例如 aFloat
或 aInt
或任何类型并转换它?
例如
(Blob) newblob=mycursor.GetString(i_return_BloB);
(Int) newint=mycursor.GetString(i_return_Int);
(Float) newfloat=mycursor.GetString(i_return_Float);
(Double) newdouble=mycursor.GetString(i_return_Double);
(Long) newlong=mycursor.GetString(i_return_long);
(Short) newshort=mycursor.GetString(i_return_short);
它会工作吗?我可以mycursor.GetString()
用于任何类型吗?