codecamp

一个类是由哪些变量构成的?

  • Local variable 本地变量
  • instance variables 实例变量
  • class variables 类变量

Local variable

在方法体, 构造体内部定义的变量 在方法结束的时候就被摧毁

instance variables

在类里但是不在方法里 在类被载入的时候被实例化

class variables+

在类里但在方法外, 加了 static 关键字. 也可以叫做静态变量

JDK JRE JVM?
静态变量和实例变量的区别?
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Java 面试笔记

Java

多态 Polymorphism

Static 关键字

int 与 integer

Programme

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }