English 中文(简体)
预期类型不匹配的错误
原标题:
  • 时间:2009-02-14 16:50:08
  •  标签:

我期望在编译时得到一个ByRef参数类型不匹配的错误,但我没有收到。它在编译时没有错误,但在运行时出现13号错误,“类型不匹配”。

这很容易复制。

dim c as Car
Set c = New Car

Sail c

Sorry, there is no text provided to translate. Please provide the text.

Public Sub Sail(ByRef b As Boat)
    Sorry, there is no text provided to translate. Please provide the text.
End Sub

汽车不继承自船。

有没有一种设置(或插件),可以将VB强制设为严格编译模式?

编辑:似乎没有这个的编译器选项。有人知道是否有一个插件可以在编译过程中分析源代码中的这些转换问题吗?

问题回答

在VB6中能否设置Option Strict为True?

编辑:显然,在VB6中无法实现(似乎是在VB 7.0中引入的)





相关问题
热门标签