当前位置:网站首页>Variable things

Variable things

2022-06-22 09:13:00 C_ x_ three hundred and thirty

Member variables of class Include Instance variables and Class variables ( Static variables ), Member method Include Instance method and class method ( Static methods )

Small mistakes :

 Local variables defined in a method are created when the method is executed  ----> error 

int a;     --> Memory space will not be allocated

int a;a=5;   --> Will allocate memory space

Memory space is allocated only when a variable is assigned a value

原网站

版权声明
本文为[C_ x_ three hundred and thirty]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/173/202206220910015176.html