0
Can anyone explain the concept of base keyword?
Can anyone explain the concept of base keyword?
1 Antwort
+ 2
A keyword as an example is your var / int / double / char / ect.ect. Basically anything that can be used in your code that the language understands as a keyword you can't use as anything other than a keyword. For example you can't name your integer int. That'd just result in an exception. You can't name your double - char. Basically keywords are the things that the language can use for one thing and one thing only.