亮亮小二吧 关注:4贴子:155

回复:亮亮我是来水帖的,你揍开。。。

取消只看楼主收藏回复

WeakHashMap HashMap的子类,要求添加键值对时,key只保留对象的弱引用。
IdentityHashMap 依据==判断Key是否相等,基础类型要求对象值相等,对象类型要求地址相等


117楼2016-10-24 22:45
回复
    main(){}函数
    public static void String[] args
    Scanner类
    接受文件,输入流,字符串。用于解析数据,默认使用空白符分隔。
    --default boolean hasNextXxx(){}
    --default Xxx nextXxx(){}
    --default useDelimiter(String delimiter){}
    Scanner读取接受阻塞:等待输入


    118楼2016-11-16 12:55
    回复
      BufferReader
      接受字符流,仅接受字符串,用于字符流输入。


      119楼2016-11-16 14:49
      回复
        System类
        标准输入输出,错误输出属性
        获取环境变量、系统属性的方法,加载文件、动态链接库的方法


        120楼2016-11-19 10:00
        回复
          java.lang.System
          -static PrintStream err
          -static InputStream in
          -static PrintStream out
          -static Map<String, String> getenv(){}
          -static Properties getProperties(){}


          121楼2016-11-19 10:45
          回复
            -static void gc(){}
            -static long currentTimeMillis(){}
            -static long nanoTime(){}
            -static int identityHashCode(Object x){}


            122楼2016-11-19 11:03
            回复
              java.long.Runtime
              -void gc()
              -static Runtime getRuntime()
              -void load(String filename)
              -void loadLibrary(String libname)
              -void runFinalization()
              -int availableProcessors()
              -long totalMemory()
              -long maxMemory()
              -long freeMemory()
              -Process exec(String command)


              123楼2016-11-20 12:04
              回复
                java.long.Object
                -boolean equals(Object obj)
                -protected void finalize()
                -Class<?> getClass()
                -int hashCode()
                -String toString()
                -void notifyAll()
                -void notify()
                -void wait(long timeout)


                124楼2016-11-20 12:15
                回复
                  LAMP=>Linux/apache/MySQL/PHP


                  125楼2016-12-24 09:44
                  回复
                    http/tcp/udp
                    http 无状态


                    126楼2016-12-24 09:50
                    回复
                      状态行/消息头/空行/消息体


                      127楼2016-12-24 09:54
                      回复
                        post uri http版本
                        host:网址
                        connection:close(不保持连接)
                        user-agent:浏览器及版本
                        accept-language:zh-cn(简体中文)


                        128楼2016-12-24 10:19
                        回复
                          版本
                          connection:
                          server:服务器/版本号
                          date:连接起始时间
                          last-notified:连接终止时间
                          connect-length:
                          connect_type:


                          129楼2016-12-24 10:36
                          回复
                            php5ts.dll文件是php的内核动态链接库文件,没有此文件则php解析器无法使用。
                            因此在windows里Apache加载PHP时,Apache不止要加载PHP的Apache模块
                            LoadModule php5_module "path/to/php5apache2_2.dll"
                            指定什么类型文件用php解析器解析
                            AddType application/x-httpd-php .php
                            很重要的一点是将php5ts.dll文件拷到可搜索的系统目录中,即windows的环境变量如c;\windows\system32。
                            另外PHP支持mysql时php5ts.dll文件还需要libmysql.dll的支持,因此libmysql.dll文件也要copy到到可搜索路径中。


                            130楼2017-01-08 10:19
                            回复