You develop a serializable class for persisting objects as files.Every time an object is serialized, you have to update the database with the name of the object and location of that file.You elect to employ the OnSerialized attribute to achieve this objective.You now need to apply the OnSerialized attribute to a certain method.What should you do?()A.B.C.D.
You develop a serializable class for persisting objects as files.Every time an object is serialized, you have to update the database with the name of the object and location of that file.You elect to employ the OnSerialized attribute to achieve this objective.You now need to apply the OnSerialized attribute to a certain method.What should you do?()
A.
B.
C.
D.
相关考题:
IfyouaregoingtorunaTSPITRrecovery,whichviewwillhelpyoutodeterminewhichobjectswillbelostduringtheTSPITR?() A.TS_OBJECTS_TO_BE_DROPPEDB.TS_PTTR_OBJECT_DROPPEDC.TS_PITR_OBJECTS_TO_BE_DROPPEDD.TS_OBJECTS_DROPPEDE.TS_DROPPED_OBJECTS
Anairlineisbuildingabookingsystemforitspremiumandgeneralcustomers.Thegoalistoensurepremiummembersaregivenhigheraccessprioritywhenusertrafficishigh.Whatconfigurationwillachievethisgoal?() A.ConfigureaWorkManagerforpremiumuserswithaMinimumThreadConstraint.B.ConfigureaWorkManagerforpremiumuserswithahigherfair-share-request-class.C.ConfigureaWorkManagerforpremiumuserswithahigherresponse-time-request-class.D.ConfigureaWorkManagergeneraluserswithaMaximumThreadConstraint.E.ConfigureaWorkManagerforpremiumuserswithacustomrequest-class.
已知:Manager extends Employee观察:public Manager(String n,double s,int year,int month,int day) { super(n,s,year,month,day); bonus=0; }其中super是 ( )A.Object类B.Manager类C.Employee类D.Class类
C++ is used with proper(66) design techniques.A.class-orientedB.object-basedC.face to objectD.object-oriented
如下说法正确的是正确的_________。A.Class类是Object类的超类B.Object是一个final类C.Class类的对象可使用new运算符创建D.Object类是Class类的超类。