Please enable JavaScript.
Coggle requires JavaScript to display documents.
Chapter 2 - Coggle Diagram
Chapter 2
var
-
-
-
-
-
-
-
var a = 10, b = 3; //does not compile
-
-
-
public void method(var a, var b){} //does not compile
-
-
-
reserved type name
cannot be used enum, class and interface
-
understanding data types
-
-
-
-
Identifying identifier
must start with, letter $ or _
include numbers, but no start
-
-
Initializing variables
local variable
inside method
-
without initialize, compiler error
-
-
-
-
-
-
-
-
-
-
-