单项选择题

在下列概念中,不属于面向对象方法的是______ 。

A.类
B.过程调用
C.对象
D.多态性
<上一题 目录 下一题>
热门 试题

单项选择题
结构化程序设计主要强调的是______ 。
A.程序的规模
B.程序的效率
C.程序设计语言的先进性
D.程序的易读性
单项选择题
在工程中的标准模块中定义了如下数据类型: Type fruit orange As Integer apple As Integer End Type 在窗体上有—命令按钮Command1,要求当单击命令按钮时在C: 根目录下的顺序文件myfrtac.txt 中写入一条记录,下列能够完成改操作的事件过程是______ 。
A.Private Sub Command1_Click() Dim myfrt As fruit myfr orange = 5 myfr apple = 10 Open “c:\myfrt txt” For Output As #1 Print #1, myfr orange; myfr apple Close #1 End Sub
B.Private Sub Command1_Click() Dim myfrt As fruit myfr orange= 5 myfr apple= 10 Open “c:\myfrta txt”For Input As #1 Print #1, myfrt, orange; myfr apple Close #1 End Sub
C.Private Sub Command1_Click() Dim myfrt As fruit myfr orange= 5 myfr apple = 10 Open “c:\myfrta txt” For As #1 Print #1, myfr orange; myfr apple Close #1 End Sub
D.Private Sub Command1_Click() Dim myfrt As fruit myfr orange = 5 myfr apple= 10 Open “c:\myfrta.txt” For Output As #1 Print myfr orange; myfr apple Close #1 End Sub
相关试题
  • 以下程序的输出结果是D) 9 12 Optio...
  • 在窗体上画一个列表框和一个文本框,然后编...
  • 对窗体编写如下事件过程: Private Sub ...
  • 在窗体上面画一个命令按钮,然后编写如下事...
  • 在窗体上面一个命令按钮(其Name属性为Comm...