美文网首页
各种名词

各种名词

作者: glikun | 来源:发表于2017-08-16 17:17 被阅读0次

TTL: Time to Live

gTLD Server: global top level dns server, like .com TLD server or .net TLD server. https://www.dnsknowledge.com/whatis/tld-name-server/

A record: maps domain to a specific IP

CNAME record: maps one name to another name

NX record: maps one name to a specific IP(stand for a dns merchine)

why do we need CNAME Record?

DDoS:

www.a.b.c 和 a.b.c在dns中是不同的

array.length length of array

String.length() number of unicode in the string

javac net/cheng/Add.java//compile net/cheng/Add.java and generate net/cheng/Add.class

javac -d tmp/ net/cheng/Add.java//compile net/cheng/Add.java and generate tm/net/cheng/Add.class, so -d specify the output dir

jar cvf ./tmp/add.jar net/cheng/Add.class

jar cvf apple.jar Test.class audio video //Test.class and two dirs audio and video are archived into alibaba.jar

jar cvf alibaba.jar com//com is the dir contains all classes

jar xvf alibaba.jar

java -cp .:tmp/* com.alibaba.Test//.:tmp/* means the java.class.path includes current dir . and all jar files in tmp/ ; Alternatively you can specify shell variaty: export CLASSPATH=.:tmp/*

Once you understand that classes are always referenced by their fully qualified name in the final bytecode, you must understand how the class code is actually loaded. This happens the first time an object of that class is created, or the first time a static member of the class is accessed. At this time, theClassLoadertries to locate the class and instantiate it. If it can't find the class, aClassNotFoundExceptionis thrown. To locate the class, theClassLoaderusually checks the paths listed in the$CLASSPATHenvironment variable.

All classes of Java SE API are in jre/lib/rt.jar and the extension jars are in jre/ext/lib/

相关文章

  • 各种名词

    TTL: Time to Live gTLD Server: global top level dns serve...

  • mysql的各种名词

    脏页:在内存中,页数据被修改则该数据页即时脏页,通过page clean thread 去刷新脏页到磁盘 undo...

  • 亚马逊各种名词解读

    1、SKU:英文全称: StockKeeping Unit(库存量单位),即库存进出计量的单位,可以是以件,盒,托...

  • 各种iOS名词的意义所在

    教程截图: Learn all about how Code Signing works! 下面是一篇由澳洲墨尔本...

  • 各种大数据的名词简介

    Hadoop是一个由Apache基金会所开发的分布式系统基础架构。Hadoop的框架最核心的设计就是:HDFS和M...

  • 成长的特征

    成长的特征 每个人成长的特征都是一样的,小时的学习生活名词,如各种家具,各种蔬菜水果等等,上学开始学习各种学术名词...

  • 亚马逊新手卖家必知各种名词

    1、SKU:英文全称: StockKeeping Unit(库存量单位),即库存进出计量的单位,可以是以件,盒,托...

  • 钢板中各种元素基本名词分析

    钢是含碳量在0.0218%-2.11%之间的铁碳合金。我们通常将其与铁合称为钢铁,为了保证其韧性和塑性,含碳量一般...

  • 信息化建设各种系统名词

    CRM/PLM/SCM/MES与ERP的联系与区别 企业通过专设信息机构、信息主管,配备适应现代企业管理运营要求的...

  • “各种边际”——经济学名词解释

    今日份的学习没有选择继续研(kao)究(gu)犬校,原因不是因为中断了学习,而是发现并不是所有犬校分享的内容我都有...

网友评论

      本文标题:各种名词

      本文链接:https://www.haomeiwen.com/subject/gyzirxtx.html