博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java timezone_Java TimeZone setID()方法与示例
阅读量:2531 次
发布时间:2019-05-11

本文共 1423 字,大约阅读时间需要 4 分钟。

java timezone

TimeZone类的setID()方法 (TimeZone Class setID() method)

  • setID() method is available in java.util package.

    setID()方法在java.util包中可用。

  • setID() method is used to set the id of this TimeZone.

    setID()方法用于设置此TimeZone的ID。

  • setID() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.

    setID()方法是一种非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • setID() method does not throw an exception at the time of set id.

    setID()方法在设置ID时不会引发异常。

Syntax:

句法:

public void setID(String ids);

Parameter(s):

参数:

  • String ids – represents the assigned time zone id.

    字符串ID –代表分配的时区ID。

Return value:

返回值:

The return type of the method is void, it returns nothing.

该方法的返回类型为void ,不返回任何内容。

Example:

例:

// Java program to demonstrate the example // of void setID(String ids) method of TimeZone import java.util.*;public class SetIDOfTimeZone {
public static void main(String args[]) {
// Instantiates TimeZone object TimeZone tz = TimeZone.getDefault(); // Display tz System.out.println("tz.getID(): " + tz.getID()); // By using setID() method is to // set the id for this time zone tz tz.setID("Africa/Asmera"); // Display tz System.out.println("tz.setID(Africa/Asmera): " + tz.getID()); }}

Output

输出量

tz.getID(): GMTtz.setID(Africa/Asmera): Africa/Asmera

翻译自:

java timezone

转载地址:http://ottzd.baihongyu.com/

你可能感兴趣的文章
thinkphp3.2.3 bug集锦
查看>>
[BZOJ 4010] 菜肴制作
查看>>
C# 创建 读取 更新 XML文件
查看>>
KD树
查看>>
VsVim - Shortcut Key (快捷键)
查看>>
C++练习 | 模板与泛式编程练习(1)
查看>>
HDU5447 Good Numbers
查看>>
08.CXF发布WebService(Java项目)
查看>>
java-集合框架
查看>>
RTMP
查看>>
求一个数的整数次方
查看>>
点云PCL中小细节
查看>>
铁路信号基础
查看>>
RobotFramework自动化2-自定义关键字
查看>>
[置顶] 【cocos2d-x入门实战】微信飞机大战之三:飞机要起飞了
查看>>
BABOK - 需求分析(Requirements Analysis)概述
查看>>
第43条:掌握GCD及操作队列的使用时机
查看>>
Windows autoKeras的下载与安装连接
查看>>
CMU Bomblab 答案
查看>>
微信支付之异步通知签名错误
查看>>