620 likes | 720 Views
Creating Classes. Tonga Institute of Higher Education. Current Status. The form class contains all of our code Code is added to the form class Code may use variables, methods and events Code may use other objects When a program is run, the form object is used. Custom Classes and Objects.
E N D
Creating Classes Tonga Institute of Higher Education
Current Status • The form class contains all of our code • Code is added to the form class • Code may use variables, methods and events • Code may use other objects • When a program is run, the form object is used
Custom Classes and Objects • Sometimes, the objects provided by Microsoft do not fit our needs. • We can define custom objects. • We can use custom objects just like normal objects
How to Define a Class Access Specifier Class Name • Access Specifier - Covered later • Class Name • Class names should be nouns • One word • The first letter of each internal word is capitalized. • Keep your class names simple and descriptive. • Example: • Customer • SalesOrder
Demonstration Defining a class
How to Define a Variable Access Specifier Variable Name Type • Access Specifier – Covered later • Variable Name • One word • The first letter of each internal word is capitalized. • Keep your variable names simple and descriptive. • Example: • FirstName • PhoneNumber • The type can be a primitive or an object • Example: Integer, String, Boolean, Student
Demonstration Defining a variable
How to Define a Method(Subroutines and Functions) • Methods - Pieces of code that perform a single function • Subroutine – A method that does not return anything • Function – A method that returns something
Difference Between Subroutines and Functions Access Specifier Parameter Type Parameter Name Method Name Access Specifier Parameter Type Method Name Parameter Name Return Type Return Data
Subroutines and Function Names • Verbs • One word • The first letter of each internal word is capitalized. • Keep your method names simple and descriptive. • Example: • RunFast • GetBackground • ShowWelcomeMessage
Subroutines and Function Parameters • Parameters are optional • Each parameter that your method accepts must have a name and type • The name should be: • One word • The first letter of each internal word is capitalized. • Keep your parameter names simple and descriptive. • The type can be a primitive or an object • Example: String, Integer, Customer • Example: • Private Sub ShowSummary(ByVal StudentID As Integer) • If multiple parameters are used, separate them with commas • Example: Private Sub ShowSummary(ByVal StudentID As Integer, ByVal StudentName as String) • Use the name inside the method parameter list to access the parameter in your code • StudentID • StudentName
Function Return Types Access Specifier Parameter Type Method Name Parameter Name Return Type Return Data • Return Type – Sets the type of data that will be returned from the function. • The type of data can be a primitive or an object • Example: String, Integer, Customer • If you are not returning anything, do not use a function. Use a subroutine. • Do not forget to use the Return keyword in your function
Demonstration Defining a subroutine
Demonstration Defining a function
Method Overloading • Overloading - Having multiple methods with the same name but different parameters • To make an overloaded method, create a method with the same name but different parameters. • Return types for functions can be overloaded but it is not a good idea Same Name Different Parameters
Demonstration Method Overloading
Properties and Code Conventions • Generally, make all class variables private • Use properties to access your variables • Properties – a specialized method used to get and set a class’ variables • This could be done using regular methods, but properties are used more often
Regular Methods vs. Properties Same Thing!
Property Features • Read-Only Properties • Write-Only Properties
Demonstration Properties
Using the custom class • Use custom objects just like normal objects • Declare and instantiate them • Use methods and properties • A class cannot use itself • A different class must use a class • Example: A StudentSystem class would use a Student class
Demonstration Using the custom class
Dynamic Link Libraries • Until now, all of our VB.Net programs have been .exe files • This allows us to run a program • Sometimes, we need to share a class that we’ve made • A Dynamic Link Library is a file that contains classes for use by other programs. • They end with .dll • Example: System.dll
Seeing DLLs in Action • When a form is run, many different classes are needed. Example: Form class, textbox class, and more. • VS.Net loads dll files when a form is run. The dll files contain the class data for the objects needed to run the program • The loading of dll files can be seen in the Output box
Demonstration Seeing DLLs in Action
Creating a DLL File • We can create Dynamic Link Libraries • Right click on the project in the Solution Explorer • Select Properties • Select the Class Library Output Type • Click OK button • Compile the project. When the project is compiled, VS.Net creates a .dll file in the Bin directory
Demonstration Creating a DLL File
References • Many projects use dll files • Many dll files used are listed in the references folder
Demonstration References
Adding DLL Files to a Project - 1 • To use a dll file in a project, right click on the References folder and select Add Reference • The Add Reference form is displayed
Adding DLL Files to a Project - 2 • Use the .Net tab to add a .Net dll • Use the COM tab to add a COM dll. (These are dll files made before VB.Net) • Use the Projects tab to add a reference from a project in the same solution
Demonstration Adding DLL Files to a Project
Using DLL Files • To use a class defined in a DLL file • Add a reference to the dll file to the project • Write the fully qualified namespace to access the object Dim x as new ClassLibrary1.Student Remember: Namespaces are not always the same as the file name! Class Name Fully Qualified Namespace
Demonstration Using DLL Files
Import Statements • Import Statements allow you to not always type the fully qualified namespace Imports ClassLibrary1.Student • There are import statements defined at the project level. To see these, go to Project Properties -> Common Properties -> Imports
Demonstration Import Statements
.DLL and .EXE File Tips • A .Dll file cannot be run. Rather, it is built • Do not use the same name for a .dll and exe file • If the location of a .dll file reference is changed, VS .Net will show a yellow error message. To fix this, remove the incorrect reference and add a new reference • When you make a change in a .dll file, the project must be rebuilt. • When a .dll file is changed in a separate solution from the .exe file, the .exe solution must be reloaded • An .exe project that uses a .dll file will have a copy of the .dll file saved to the bin directory. When giving the program to other people, both the .dll and .exe files must be given to run properly.
Demonstration .DLL and .EXE File Tips
What is Scope? • The scope of an element (variable, class, method, etc.) defines what parts of a program can see it Using Public instead of Private changes the scope of this variable.
Levels of Scope • Block • Procedure • Class • And others
Block Scope • A block is a set of statements terminated by an End, Else, Loop, or Next statement • Example: The code within a For...Next or If...Then...Else...End. • An element declared within a block can be used only inside that block • Use Dim to declare elements with block scope • The Static keyword may also be used (Covered later) Block
Demonstration Block Scope
Procedure Scope Procedure • A procedure is a subroutine or function • An element declared within a procedure is only usable in the procedure. • Elements at this level are also known as local elements. • Use Dim to declare elements with procedure scope • The Static keyword may also be used (Covered later) • Works like block scope but you must also consider the parameters Procedure
Demonstration Procedure Scope
Class Scope • Declare elements at this level by placing the declaration statement outside of any procedure or block within the class. • These access specifiers can be used • Public • Private • Dim • Friend • Protected • Protected Friend
Access Specifiers Access Specifier • Public • Can be used by everything • Private • Can only be used by code inside the same class • Dim • Same as Private • Friend • Can be used by code inside the same project Name Dim FirstName as String Type • Protected • Can be used by code that inherits from this class • Protected Friend • Combination of Protected and Friend
Demonstration Access Specifiers
Scope:Global Variables vs. Local Variables • Global Variables • Variables defined outside of a procedure or block but inside of a class • Also called member variables • Can be readonly by using the ReadOnly key word • Local Variables • Variables defined inside procedures or blocks • They are only visible by code inside the procedure or block • When looking for a value, start local. Go global if you can’t find the variable
Demonstration Global vs. Local Variables
Element Lifetimes • The lifetime of a declared element is the period of time during which it is available for use. • Local variables declared with Dim exist only while the procedure in which they are declared is executing. • A variable declared in a class exists as a separate copy for each instance of the class in which it is declared; each such variable has the same lifetime as its instance.