Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dim vs Private/Public

Tags:

scope

vb.net

At the head of a module, I wish to declare some global variables for use in various subs/functions.

What is the difference between

Dim x as string and Private x as string / Public x as string, and when would I use one over the other?

like image 418
Kevin Avatar asked Oct 21 '11 17:10

Kevin


2 Answers

Private and public control the scope of the variable or object you're declaring.

Private will only allow members of the relative module/class/whatever to access the instance

public will allow anything in the same scope as the module/class/whatever to access it.

Dim defaults to either public or private, depending on what you're working in. A class for example, will default to private. I suggest reading up on encapsulation and OOP to get a better feel for this.

like image 157
MGZero Avatar answered Oct 22 '22 22:10

MGZero


They are different, but related, things.

Dim Statement (Visual Basic) [MSDN] tells us:

[Dim] Declares and allocates storage space for one or more variables.

and

The Dim keyword is optional and usually omitted if you specify any of the following modifiers: Public, Protected, Friend, Protected Friend, Private, Shared, Shadows, Static, ReadOnly, or WithEvents.

Access Levels in Visual Basic [MSDN] tells us:

Private (and Public, Protected, Friend, Protected Friend) are Access Modifiers which specify 'what code has permission to read it or write to it.'

and

At the module level, the Dim statement without any access level keywords is equivalent to a Private declaration. However, you might want to use the Private keyword to make your code easier to read and interpret.

so Private x As String is the equivalent of Dim Private x As String (although if you type this Visual Studio will remove the Dim)

and Dim x As String is equivalent to Private x As String except in Structures (where it is equivalent to Public x As String) and interfaces where declaring variables is not allowed - see Declaration Contexts and Default Access Levels (Visual Basic) [MSDN]

like image 28
mattumotu Avatar answered Oct 22 '22 23:10

mattumotu