Showing posts with label local variable. Show all posts
Showing posts with label local variable. Show all posts

Tuesday, October 9, 2012

Variables vs. Local Variable

variables 如果沒有先initialize的話, 會被令為0 (int, float, long), 或是null (String), 或是false (boolean)

local variable 是在method裡面的variable, 不能被其他的class使用
local variable 一定要initialize不然會有compile error