关于glmer模型的汇总输出,我有一个令人难以置信的问题。
在下面的private static List<DerivedType> internal_getAllRows<DerivedType>(SelectorMode mode) where DerivedType : TemplateInstance
{
//Create a raw instance of the generic type to be mapped
instance = (DerivedType)FormatterServices.GetUninitializedObject(typeof(DerivedType));
//Fill the raw instance with relational data
instance.initializeRaw();
instance.initialize(typeof(DerivedType));
//Get the parameterless constructor
var ctor = typeof(DerivedType).GetConstructor(Types.EmptyTypes)
ctor.Invoke(instance, null); //Invoke the constructor on the mapped instance, i am trying to avoid reflection HERE !
}
中,我想知道Listgp的第一级是哪里。它应该是ListgpT。
m0.1
从上面的输出中可以看出,只显示了ListgpTA和ListgpTQ,但没有显示ListgpT。
这是否意味着ListgpT的结果与拦截相同?
答案 0 :(得分:2)
事实上这很正常。在这种情况下,我猜测Listgp只有3种可能的情况:ListgpT,ListgpTA和ListgpTQ。因此,不需要ListgpT的输出,因为它被视为参考级别,这意味着ListgpTA和ListgpTQ与ListgpT相比较。
您可以阅读R
中显示AVURLAsset* videoAsset = [AVURLAsset URLAssetWithURL:url options:nil];
CMTime videoDuration = videoAsset.duration;
float videoDurationSeconds = CMTimeGetSeconds(videoDuration);
NSDate* date = [NSDate dateWithTimeIntervalSince1970:videoDurationSeconds];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setTimeZone:[NSTimeZone timeZoneWithName:@"UTC"]];
[dateFormatter setDateFormat:@"HH:mm:ss"]; //you can vary the date string. Ex: "mm:ss"
NSString* result = [dateFormatter stringFromDate:date];
输出的this,您可以看到4个癌症阶段只有3个在输出中(因为假设第一阶段是默认值,就像ListgpT是你的例子中的默认值一样)