Presentation is loading. Please wait.

Presentation is loading. Please wait.

Variables. Some Rules of Variable Naming Convention : Variable names are case-sensitive. A variable’s name can be any legal identifier. It can contain.

Similar presentations


Presentation on theme: "Variables. Some Rules of Variable Naming Convention : Variable names are case-sensitive. A variable’s name can be any legal identifier. It can contain."— Presentation transcript:

1 Variables

2 Some Rules of Variable Naming Convention : Variable names are case-sensitive. A variable’s name can be any legal identifier. It can contain Unicode letter,Digits and Two Special Characters such as Underscore and dollar Sign. Length of Variable name can be any number.

3 Some Rules of Variable Naming Convention : Its necessary to use Alphabet at the start (however we can use underscore, but do not use it ) Some auto generated variables may contain ‘$‘ sign. But try to avoid using Dollar Sign. White space is not permitted. Special Characters at start are not allowed. Digit at start is not allowed. Subsequent characters may be letters, digits, dollar signs, or underscore characters. Variable name must not be a keyword or reserved word.

4 Some Standard Conventions Used : 1. Never Use Dollar Or Underscore as First Letter Dollar Sign and Underscore as First Character in Variable name is allowed but still its not good programming Style to use it as First Character. Generally we use Underscore in “Constant Value” variable. String TOTAL_NUM = ten; String MAX_COUNT = twenty;

5 2. Capitalization of First Character of Second Word If variable name contain two words then write first letter of second word in Capital Case. If variable name contain single word then write that word in small case. Example : Multiple Words in Variable Name – sumOfNumber – firstNumber – skinColor Example : Single Word in Variable Name – sum – First – last

6 Valid Variable names? i an_apple numberOfMonkeysThatFitInABarrel $floater harry03


Download ppt "Variables. Some Rules of Variable Naming Convention : Variable names are case-sensitive. A variable’s name can be any legal identifier. It can contain."

Similar presentations


Ads by Google