Systems

Posted guoDaXia的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Systems相关的知识,希望对你有一定的参考价值。

package com.System;

public class Study01 {
    /*
     * System 包含一些游泳的类字段和方法
     * 继承自java.lang包
     * JDK1.0开始
     * 全部方法为static
     * 
     * 字段:
     *     static PrintStream err 标准错误输出流
     *     static InputStream in  标准输入流
     *     static PrintStream out 标准输出流
     * 有关方法:
     *     setErr(PrintStream err) 重新分配标准错误输出流
     *     setIn(InputStream in)
     *     setOut(PrintStream out)
     * 一些方法:
     *     gc(). 运行垃圾回收器,会自动调用finalize()
     *  exit(int status) 终止正在运行的虚拟机。status不为0代表非正常退出
     *  currentTimeMillis() 返回以毫秒为单位的当前时间
     *      主要用于获取时间戳,或者造随机数
     *  static void arraycopy(Object src,int srcPos,Objhect dest,int destPos,int length) 将src中从srcPos下标位置开始的length个元素覆盖dest的从destPos元素length个元素
     *  getProperties() 获取当前的系统属性
     *  getProperty(String key) 获取指定键的系统属性
     *  setProperty(Stringf key,String value) 设置系统属性
     */
}
View Code

 

以上是关于Systems的主要内容,如果未能解决你的问题,请参考以下文章

ZPiE: Zero-knowledge Proofs in Embedded systems

Reducing Participation Costs via Incremental Verification for Ledger Systems学习笔记

unity5.1 particle systems怎么控制粒子速度

P2347 砝码称重 & P1474 货币系统 Money Systems

POJ1635 Subway tree systems ——(判断树的同构,树的最小表示法)

POSEIDON: A New Hash Function for Zero-Knowledge Proof Systems 学习笔记