Вопрос

could anyone tell me if Visual Basic uses dynamic scoping or lexical scoping? Think it's static scoping but not sure! Thanks!

Это было полезно?

Решение

Vb6 uses static scoping. It resolves scope in the following order:

  • Local symbols
  • Module symbols
  • Global symbols
  • Type library references
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top