单选题从类库myclasslib删除类myBox,正确的命令语句是(  )。AREMOVE CLASS myBox FROM myclasslibBREMOVE CLASS myBox OF myclasslibCDELETE CLASS myBox FROM myclasslibDDELETE CLASS myBox OF myclasslib

单选题
从类库myclasslib删除类myBox,正确的命令语句是(  )。
A

REMOVE CLASS myBox FROM myclasslib

B

REMOVE CLASS myBox OF myclasslib

C

DELETE CLASS myBox FROM myclasslib

D

DELETE CLASS myBox OF myclasslib


参考解析

解析:
从类库中移除类用REMOVE命令,从数据库和磁盘中删除一个类用DELETE命令,从类库中删除类用OF命令。

相关考题:

已建立一个名为teacher的类,保存该类的类库名称是mylib,则删除该类正确的命令是( )。A)REMOVE CLASS mylib OF teacherB)REMOVE CLASS teacher OF mylibC)DELETE CLASS mylib OF teacherD)DELETE CLASS teacher OF rnylib

下面能表示一个正确的类的是( )。A.class AB.class A()C.class A[]D.class A{}

创建一个名为myteacher的新类,保存新类的类库名称是mylib,新类的父类是Teacher,正确的命令是 ( )。A. CREATE CLASS mylib OF myteacher AS TeacherB. CREATE CLASS myteacher OF Teacher AS mylibC. CREATE CLASS myteacher OF mylib AS TeacherD. CREATE CLASS Teacher OF mylib AS myteacher

创建一个名为student的新类,保存新类的类库名称是mylib,新类的父类名是Person,正确的命令是( )。A.CREATE CLASS mylib OF student AS PcrsonB.CREATE CLASS student OF Person AS mylibC.CREATE CLASS student OF mylib AS PersonD.CREATE CLASS Person OF mylib AS student

下面各派生类的定义中,正确的是()。A.class A{};class B:A public{ 下面各派生类的定义中,正确的是( )。A.class A{<类的成员>};class B:A public{<类 B 中新增的成员>};B.class A{<类的成员>};private class B: A{<类B中新增的成员>};C.class A{<类的成员>};class B: protected A{<类B中新增的成员>};D.class A{<类的成员>};class B:A{<类B中新增的成员>};

( 33 ) 创建一个名为 student 的新类 , 保存新类的类库名称是 mylib, 新类的 父 类是 P erson, 正确的命令是A ) CREATE CLASS mylib OF student A s P ersonB ) CREATE CLASS student OF P erson A s mylibC ) CREATE CLASS student OF mylib A s P ersonD ) CREATE CLASS P erson OF mylib A s student

Which statement is NOT true concerning the stowage of class 1 explosives ________.A.Class 1.1 explosives may be stowed with class 9 dangerous substancesB.Class 1.4 explosives must be“separated from”a stow of class 5.1 oxidizing materialsC.Class 1.4 explosives may not be stowed in the same hold with class 6.1 poisonsD.Class 1.4 explosives must be“separated from”a stow of class 8 corrosive materials

You are creating a Windows Forms application by using the .NET Framework 3.5.You plan to develop a custom control for the application.  The control will be a composite control.Your need to derive from the class that will create the control by using the minimum amount of development effort.What should you do?()A、Derive from the Control class.B、Derive from the UserControl class.C、Derive from the FrameworkElement class.D、Derive from the ContainerControl class.

下列哪个SQL语句可以用于从表users中删除数据:()。A、REMOVE TABLE usersB、DROP TABLE usersC、DELETE FROM usersD、ALTER TABLE users

在Java语言中,小明在他的包mypackage中定义类My_Class,在mypackage的子包mysubpackage中也有个类My_Class。小明用import mypackage.*;引入包,执行其中的语句:My_Class NewClass=new My_Class();时,将发生()。A、创建一个类mypackage.My_Class的对象B、创建一个类mypackage.mysubpackage.My_Class的对象C、该语句是错误的D、创建一个类mypackage.My_Class的对象和一个类mypackage.Mysubpackage.My_Class的对象

package foo;  public class Outer {  public static class Inner {  }  }   Which statement is true?() A、 Compilation fails.B、 An instance of the Inner class can be constructed with “new Outer.Inner()”.C、 An instance of the Inner class cannot be constructed outside of package foo.D、 An instance of the Inner class can be constructed only from within the Outer class.E、 From within the package foo, and instance of the Inner class can be constructed with “new Inner()”.

在Java语言中,小明在他的包mypackage中定义了类My_Class,在mypackage的子包mysubpackage中也有个类My_Class。小明用importmypackage.*;引入包,执行其中的语句:My_ClassNewClass=newMy_Class();时,将发生()。A、创建一个类mypackage.My_Class的对象B、创建一个类mypackage.mysubpackage.My_Class的对象C、该语句是错误的D、创建一个类mypackage.My_Class的对象和一个类mypackage.mysubpackage.My_Class的对象

删除数据库的命令是()。A、drop databaseB、delete databaseC、alter databaseD、remove database

定义一个类名为"MyClass.java"的类,并且该类可被一个工程中的所有类访问,那么该类的正确声明应为()。A、private class My Class extends ObjectB、class My Class extends ObjectC、public class My ClassD、public class My Class extends Object

package foo; public class Outer (  public static class Inner (  )  )   Which statement is true? () A、 An instance of the Inner class can be constructed with “new Outer.Inner ()”B、 An instance of the inner class cannot be constructed outside of package foo.C、 An instance of the inner class can only be constructed from within the outer class.D、 From within the package bar, an instance of the inner class can be constructed with “new inner()”

在C#程序中,如果类B要继承类A,类B正确的定义为()。A、public class B inherit AB、public class B :: AC、public class B : AD、public class B from A

在SQL Server数据库中,已有数据表student,可以删除该表数据的命令是()。A、DROP FROM studentB、DELETE FROM studentC、REMOVE FROM studentD、KILL FROM student

You are creating a Windows Forms application by using the .Net Framework 3.5.You plan to design a composite control for the application.You need to derive the control from a base class that supports templates.What should you do?()A、Derive from the Control class.B、Derive from the UserControl class.C、Derive from the ScrollableControl class.D、Derive from the ContainerControl class.

单选题package foo;  public class Outer {  public static class Inner {  }  }   Which statement is true?()A Compilation fails.B An instance of the Inner class can be constructed with “new Outer.Inner()”.C An instance of the Inner class cannot be constructed outside of package foo.D An instance of the Inner class can be constructed only from within the Outer class.E From within the package foo, and instance of the Inner class can be constructed with “new Inner()”.

单选题在Java语言中,小明在他的包mypackage中定义了类My_Class, 在mypackage的子包mysubpackage中也有个类My_Class。小明用 import mypackage.*;引入包, 执行其中的语句: My_Class NewClass = new My_Class();时,将发生()。A创建一个类mypackage.My_Class的对象B创建一个类mypackage.mysubpackage.My_Class的对象C该语句是错误的D创建一个类mypackage.My_Class的对象和一个类mypackage.mysubpackage.My_Class的对象

单选题在C#程序中,如果类B要继承类A,类B正确的定义为()。Apublic class B inherit ABpublic class B :: ACpublic class B : ADpublic class B from A

单选题创建一个名为student的新类,保存新类的类库名称是mylib,新类的父类是Person,正确的命令是(  )。ACREATE CLASS mylib OF student As PersonBCREATE CLASS student OF Person As mylibCCREATE CLASS student OF mylib As PersonDCREATE CLASS Person OF mylib As student

单选题You are creating a Windows Forms application by using the .NET Framework 3.5.You plan to develop a custom control for the application.  The control will be a composite control.Your need to derive from the class that will create the control by using the minimum amount of development effort.What should you do?()ADerive from the Control class.BDerive from the UserControl class.CDerive from the FrameworkElement class.DDerive from the ContainerControl class.

单选题package foo; public class Outer (  public static class Inner (  )  )   Which statement is true? ()A An instance of the Inner class can be constructed with “new Outer.Inner ()”B An instance of the inner class cannot be constructed outside of package foo.C An instance of the inner class can only be constructed from within the outer class.D From within the package bar, an instance of the inner class can be constructed with “new inner()”

单选题You are creating a Windows Forms application by using the .Net Framework 3.5.You plan to design a composite control for the application.You need to derive the control from a base class that supports templates.What should you do?()ADerive from the Control class.BDerive from the UserControl class.CDerive from the ScrollableControl class.DDerive from the ContainerControl class.

单选题在Java语言中,小明在他的包mypackage中定义了类My_Class,在mypackage的子包mysubpackage中也有个类My_Class,小明用 import mypac *; 引入包,执行其中的语句:My_Class NewClass = new My_Class(); 时,将发生()。A创建一个类mypackage. My_Class()的对象B创建一个类mypackage. mysubpackage. My_Class()的对象C该语句是错误的D创建一个类mypackage. My_Class()的对象和一个类mypackage. mysubpackage. My_Class()的对象

单选题You are creating a Windows Forms Application by using the .NET Framework 3.5.You plan to design a new control that will be used on multiple forms in the app.You need to ensure that the control meets the following requirement  (1)It retrieves data from a MSSQL Server 2008 database instance. (2)It uses WPF classes to display data.  (3)It uses user-customizable actions when the control is first painted on the form.   What should you do?()ACreate a new custom class for the control that is derived from the Control class.BCreate a new custom class for the control that is derived from the UserControl class.CCreate a new custom class for the control that is derived from the ContentControl class.DCreate a new custom class for the control that is derived from the ContentPresenter class.