Constants
ऐसे variables जिनकी value run time मे change नहीं होती है उसे constant कहते हैं। यह constants mathematical operations मे ज़्यादातर use किए जाते है। इसमे store की गई value program के execute होने पर नहीं बदलती है। यह programming मे कई बार आते है। जैसे किसी mathematical calculator बनाते समय π = 3.14159 (pi= 3.14159) कई बार प्रयोग किया जाता है। ऐसे मे इसे constant के रूप मे declare कर दिया जाता है।
Circumference = 2 * pi * radius
Constants को मुख्यतः दो कारणो से use किया जाता है।
- Constants don’t change value: constants की value run time मे कभी नहीं बदलती है जिससे इसमे store की value मे program का कोई प्रभाव नहीं पड़ता है।
- Constants are processed faster than variable: program के run होने पर constants normal variables से ज्यादा तेजी से execute होते हैं। जिससे program execution की speed बढ़ जाती है।
Program : Calculating area and Circumference of Circle
Public Class Form1
Const pi As Decimal = 3.14159
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e AsSystem.EventArgs) Handles Button1.Click
Dim radius, area As Decimal
radius = Val(TextBox1.Text)
area = pi * radius * radius
MsgBox(area)
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e AsSystem.EventArgs) Handles Button2.Click
Dim radius, cir As Decimal
radius = Val(TextBox1.Text)
cir = 2 * pi * radius
MsgBox(cir)
End Sub
End Class