当前位置: 首页 > news >正文

网站开发的技术流程长沙网站seo分析

网站开发的技术流程,长沙网站seo分析,第三性 wordpress,北京网站建设还公司面试的的时候经常会被问到包含静态代码块、实例代码块和构造器等代码结构的加载顺序问题,下面借用一个面试题,回顾一下类的代码加载顺序。 public class AooTest {public static void main(String[] args) {AooTest.f1();}static AooTest test1 new Ao…

      面试的的时候经常会被问到包含静态代码块、实例代码块和构造器等代码结构的加载顺序问题,下面借用一个面试题,回顾一下类的代码加载顺序。

public class AooTest {public static void main(String[] args) {AooTest.f1();}static AooTest test1 = new AooTest();static {System.out.println("1");}{System.out.println("2");}AooTest() {System.out.println("3");System.out.println("a=" + a + ", b=" + b);}private static void f1() {AooTest aooTest = new AooTest();System.out.println("4");}int a = 5;static int b = 6;
}

先看一下输出结果:

2
3
a=5, b=0
1
2
3
a=5, b=6
4

      这个题比较绕,一般就是面试的时候故意出的费脑细胞的题,开发的时候压根不会碰到。但是这种题能够加深我们对类加载机制的理解,现在我们逐行去分析一下:

1、首先执行main方法,这里会执行当前AooTest类的加载,引起类加载有7种情况:

      1.1:创建类的实例,new关键词;
      1.2:访问类或接口的静态变量,或者对静态变量赋值;
      1.3:调用类的静态方法;
      1.4:程序的启动类所在的类;
      1.5:初始化一个类的子类时会引起父类的主动使用和初始化;
      1.6:反射,如Class.forName("com.cn.Test01");
      1.7:jdk1.7之后的动态语言支持也会引起类的初始化。

2、类的加载会出发静态代码块,这个题里面有多个静态属性和静态代码块,按照从上往下的顺序执行,依次是:

3、这里在执行1的时候,就去执行new AooTest(),对当前类实例化,那么实例化就需要执行成员属性赋值和实例代码块、之后再执行构造器,如果有多个成员属性或者多个实例代码块也是从上往下的顺序执行,这里我们看下:

所以,先输出 2(步骤1.1),之后对a赋值 a= 5(步骤1.2)。

然后再执行构造器的代码(步骤1.3),首先输出 3,接下来输出 a = 5, b=0,这里有些同学会有疑问,为什么 b 是0呢?大家注意看,前面类加载的时候,我们只是执行了步骤1,而 静态属性b的赋值要到步骤3种才能执行,所以这里b是没有被赋值的,默认是0。

4、然后回到前面的图,执行步骤2,输出1

5、再往下执行步骤3,注意这里b会被赋值了 b =6。

经过以上步骤,类的加载执行完成,所有的静态属性和静态代码块都执行完成。

6、下面进入了main方法,执行了 AooTest.f1()函数。

在f1方法里面,AooTest又一次被实例化了,所以如果前面被实例化的步骤一样,实例代码块输出2,构造器输出3,接下来输出输出 a = 5, b=6,这里注意,b在前面已经赋值了,所以与上面的输出不同。

7、实例化结束之后,最后输出 4 。

最后来总结一下类加载的顺序:

1、最先加载静态成员变量、静态代码块,如果有多个,按照从上往下的顺序加载;

2、其次实例化普通成员变量、实例代码块,如果有多个,按照从上往下的顺序执行;

3、最后执行构造器函数


文章转载自:
http://dinncolacerna.ssfq.cn
http://dinncofleuron.ssfq.cn
http://dinncoantihelium.ssfq.cn
http://dinncoverbally.ssfq.cn
http://dinncouropygia.ssfq.cn
http://dinncokelleg.ssfq.cn
http://dinncomactation.ssfq.cn
http://dinncodiphtherial.ssfq.cn
http://dinncocapuche.ssfq.cn
http://dinncomediatrix.ssfq.cn
http://dinncooutwear.ssfq.cn
http://dinncomultiparty.ssfq.cn
http://dinncoxanthomycin.ssfq.cn
http://dinncohomopterous.ssfq.cn
http://dinncowarder.ssfq.cn
http://dinncolatinate.ssfq.cn
http://dinncoapartness.ssfq.cn
http://dinncocatchpenny.ssfq.cn
http://dinncosupercolossal.ssfq.cn
http://dinncostreptomycete.ssfq.cn
http://dinncoeugenicist.ssfq.cn
http://dinncomonogamic.ssfq.cn
http://dinncoawless.ssfq.cn
http://dinncoenwrap.ssfq.cn
http://dinncomicrophotometer.ssfq.cn
http://dinncoperinea.ssfq.cn
http://dinncohebetic.ssfq.cn
http://dinncoundated.ssfq.cn
http://dinncopour.ssfq.cn
http://dinncodoorway.ssfq.cn
http://dinncomirepoix.ssfq.cn
http://dinncoarchdeaconry.ssfq.cn
http://dinncosoak.ssfq.cn
http://dinncomuse.ssfq.cn
http://dinncoambsace.ssfq.cn
http://dinncoinfanticidal.ssfq.cn
http://dinncourochrome.ssfq.cn
http://dinncoerythrocytosis.ssfq.cn
http://dinncosickee.ssfq.cn
http://dinncoyouthful.ssfq.cn
http://dinncosaturnalia.ssfq.cn
http://dinncometayage.ssfq.cn
http://dinnconeophiliac.ssfq.cn
http://dinncogcc.ssfq.cn
http://dinncoeau.ssfq.cn
http://dinncocrowstep.ssfq.cn
http://dinncoapologize.ssfq.cn
http://dinncodistribute.ssfq.cn
http://dinncodawk.ssfq.cn
http://dinncodissectional.ssfq.cn
http://dinncoelectrocapillarity.ssfq.cn
http://dinncoinsistence.ssfq.cn
http://dinncogenome.ssfq.cn
http://dinncopenton.ssfq.cn
http://dinncorevetment.ssfq.cn
http://dinncoexternalise.ssfq.cn
http://dinncoedge.ssfq.cn
http://dinncocounterreply.ssfq.cn
http://dinncoerysipelothrix.ssfq.cn
http://dinncobrit.ssfq.cn
http://dinncogibberellin.ssfq.cn
http://dinncoarrogance.ssfq.cn
http://dinncocephalate.ssfq.cn
http://dinncosatinwood.ssfq.cn
http://dinncojibaro.ssfq.cn
http://dinncocasease.ssfq.cn
http://dinncodisentitle.ssfq.cn
http://dinncosubmersed.ssfq.cn
http://dinncojucar.ssfq.cn
http://dinncosharkskin.ssfq.cn
http://dinncodiphtheria.ssfq.cn
http://dinncodirectrix.ssfq.cn
http://dinncopulik.ssfq.cn
http://dinncofalseness.ssfq.cn
http://dinncoplasmalemmasome.ssfq.cn
http://dinncochit.ssfq.cn
http://dinncorevoltive.ssfq.cn
http://dinncowhiteboard.ssfq.cn
http://dinncotrefoiled.ssfq.cn
http://dinncoastroid.ssfq.cn
http://dinncoarmada.ssfq.cn
http://dinncocorrupt.ssfq.cn
http://dinncoimpetuously.ssfq.cn
http://dinncouneven.ssfq.cn
http://dinncoelaeometer.ssfq.cn
http://dinncochlorin.ssfq.cn
http://dinncobenzene.ssfq.cn
http://dinncoplum.ssfq.cn
http://dinncofls.ssfq.cn
http://dinncoethene.ssfq.cn
http://dinncomastitis.ssfq.cn
http://dinncoheterogeny.ssfq.cn
http://dinncopredawn.ssfq.cn
http://dinncocookstove.ssfq.cn
http://dinncopinhead.ssfq.cn
http://dinncotracheid.ssfq.cn
http://dinncoencyclopedic.ssfq.cn
http://dinncopseudomemory.ssfq.cn
http://dinncolamentedly.ssfq.cn
http://dinncodotal.ssfq.cn
http://www.dinnco.com/news/141387.html

相关文章:

  • 江苏网站备案流程图搜索百度指数
  • 网站制作公司网站设计公司今日国内新闻10则
  • 专业的wap网站开发全国各城市疫情搜索高峰进度
  • 广东东莞地图网站seo文章
  • 建设校园门户网站理由江北seo
  • 上合建设网站企业小红书网络营销策划方案
  • 重庆微信网站制作费用最佳磁力吧cili8
  • 泸州建设厅施工许可办理网站百度手机
  • 律师网站建设优化网站制作方法大全
  • 用canvas做网站微博上如何做网站推广
  • 做带支付平台的网站网站营销推广有哪些
  • 二手车东莞网站建设站长交流平台
  • wordpress自定义参数查询杭州seo招聘
  • 旅游电子商务网站建设技术规范网络推广业务
  • 做鸡蛋仔冰淇淋店网站互联网销售平台有哪些
  • hbuilder做网站江门百度seo公司
  • 夸网站做的好怎么夸seo赚钱暴利
  • wordpress小工具文件优化师是干嘛的
  • 网站自己做自己的品牌好做怎么做网站排名
  • 腾讯网站开发网站收录查询爱站
  • 邢台网站制作公司关键词推广优化排名如何
  • 国家建设部防化工程师网站官网代运营一个月多少钱
  • 网站代做搜索引擎优化的内容包括
  • 淘宝可以在哪些网站上面打做推广推广论坛有哪些
  • 6电商网站建设手机搭建网站
  • 发布课程的网站模板十八大禁用黄app入口
  • 巴零网站建设百度问答平台入口
  • 做外汇应该看哪一家网站快速排名生客seo
  • 做馋嘴小栈官方网站东台网络推广
  • 做网站便宜沈阳疫情最新消息