timezoneとは? わかりやすく解説

time zone

別表記:タイムゾーン

「time zone」の意味・「time zone」とは

「time zone」とは、地球上東西24帯状分けた区域のことである。それぞれの区域は、地球の自転による時間進行表現するために設けられている。具体的には、地球東西360度分けそのうち15度ごとに1つ時間帯設定している。これにより、地球上のどの地域でも、太陽南中する時刻正午とすることが可能となる。

「time zone」の発音・読み方

「time zone」の発音は、IPA表記では /ˈtaɪm zoʊn/ となる。IPAカタカナ読みでは「タイム ゾウン」となり、日本人発音するカタカナ英語では「タイム ゾーン」と読む。この単語発音によって意味や品詞が変わるものではない。

「time zone」の定義を英語で解説

A 'time zone' is a region of the globe that observes a uniform standard time for legal, commercial, and social purposes. Time zones tend to follow the boundaries of countries and their subdivisions instead of strictly following longitude, because it is convenient for areas in close commercial or other communication to keep the same time.

「time zone」の類語

「time zone」の類語としては、「timezone」、「time sector」、「time area」などがある。これらの語も同様に地球上時間区分するための領域を指す。

「time zone」に関連する用語・表現

「time zone」に関連する用語としては、「Greenwich Mean TimeGMT)」や「Coordinated Universal TimeUTC)」、「Daylight Saving TimeDST)」などがある。これらは全て時間計測し管理するための概念制度である。

「time zone」の例文

以下に、「time zone」を用いた例文10個示す。 1. The time zone of Japan is 9 hours ahead of Greenwich Mean Time.(日本タイムゾーングリニッジ標準時より9時間進んでいる。) 2. Each time zone represents a geographic area in which the local time is the same.(各タイムゾーンは、地元時間が同じである地理的な領域を表す。) 3. When you cross time zones, you may experience jet lag.(タイムゾーン越えると、時差ボケ経験するかもしれない。) 4. The International Date Line marks the place where each day officially begins in the time zone sense.(国際日付変更線は、タイムゾーンの意味各日が公式に始まる場所を示す。) 5. The concept of time zones was proposed by Sir Sandford Fleming.(タイムゾーン概念は、サンドフォード・フレミング卿によって提唱された。) 6. The time zone of a city can be determined by its longitude.(都市タイムゾーンはその経度によって決定される。) 7. Some countries, like China and India, use a single time zone nationwide.(中国インドのような国々は、全国単一タイムゾーン使用する。) 8. The time difference between two time zones is usually one hour.(2つタイムゾーン間の時差通常1時間である。) 9. The use of time zones makes it easier to coordinate activities across different geographical areas.(タイムゾーン使用は、異な地理的地域間での活動調整容易にする。) 10. Adjusting your watch to the local time zone is one of the first things to do when you arrive in a new country.(新しい国に到着したときに最初にすること一つは、時計現地タイムゾーン合わせることである。)

タイム‐ゾーン【time zone】

読み方:たいむぞーん

等時帯


TimeZone クラス

タイム ゾーン表します

名前空間: System
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

<SerializableAttribute> _
<ComVisibleAttribute(True)> _
Public MustInherit Class
 TimeZone
[SerializableAttribute] 
[ComVisibleAttribute(true)] 
public abstract class TimeZone
[SerializableAttribute] 
[ComVisibleAttribute(true)] 
public ref class TimeZone abstract
/** @attribute SerializableAttribute() */ 
/** @attribute ComVisibleAttribute(true) */ 
public abstract class TimeZone
SerializableAttribute 
ComVisibleAttribute(true) 
public abstract class TimeZone
解説解説
使用例使用例

選択した TimeZone クラス要素参照および表示するコード例次に示します

' Example of selected TimeZone class elements.
Imports System
Imports System.Globalization
Imports Microsoft.VisualBasic

Module TimeZoneDemo

    Sub Main( )

        Const dataFmt As String
 = "{0,-30}{1}"
        Const timeFmt As String
 = "{0,-30}{1:yyyy-MM-dd HH:mm}"

        Console.WriteLine( "This example of selected "
 & _
            "TimeZone class elements generates the following "
 & _
            vbCrLf & "output, which varies depending on the
 " & _
            "time zone in which it is run." &
 vbCrLf )

        ' Get the local time zone and the current local time and year.
        Dim localZone As TimeZone = TimeZone.CurrentTimeZone
        Dim currentDate As DateTime = DateTime.Now
        Dim currentYear As Integer
 = currentDate.Year

        ' Display the names for standard time and daylight saving 
        ' time for the local time zone.
        Console.WriteLine( dataFmt, "Standard time name:",
 _
            localZone.StandardName )
        Console.WriteLine( dataFmt, "Daylight saving time name:",
 _
            localZone.DaylightName )

        ' Display the current date and time and show if they occur 
        ' in daylight saving time.
        Console.WriteLine( vbCrLf & timeFmt, _
            "Current date and time:", currentDate
 )
        Console.WriteLine( dataFmt, "Daylight saving time?",
 _
            localZone.IsDaylightSavingTime( currentDate ) )

        ' Get the current Coordinated Universal Time (UTC) and UTC 
        ' offset.
        Dim currentUTC As DateTime = _
            localZone.ToUniversalTime( currentDate )
        Dim currentOffset As TimeSpan = _
            localZone.GetUtcOffset( currentDate )

        Console.WriteLine( timeFmt, "Coordinated Universal Time:",
 _
            currentUTC )
        Console.WriteLine( dataFmt, "UTC offset:",
 currentOffset )

        ' Get the DaylightTime object for the current year.
        Dim daylight As DaylightTime = _
            localZone.GetDaylightChanges( currentYear )

        ' Display the daylight saving time range for the current year.
        Console.WriteLine( vbCrLf & _
            "Daylight saving time for year {0}:",
 currentYear )
        Console.WriteLine( "{0:yyyy-MM-dd HH:mm} to "
 & _
            "{1:yyyy-MM-dd HH:mm}, delta: {2}", _
            daylight.Start, daylight.End, daylight.Delta )
    End Sub 
End Module 

' This example of selected TimeZone class elements generates the following
' output, which varies depending on the time zone in which it is run.
' 
' Standard time name:           Pacific Standard Time
' Daylight saving time name:    Pacific Standard Time
' 
' Current date and time:        2003-05-05 12:38
' Daylight saving time?         True
' Coordinated Universal Time:   2003-05-05 19:38
' UTC offset:                   -07:00:00
' 
' Daylight saving time for year 2003:
' 2003-04-06 02:00 to 2003-10-26 02:00, delta: 01:00:00
// Example of selected TimeZone class elements.
using System;
using System.Globalization;

class TimeZoneDemo
{
    static void Main( )
    {
        const string dataFmt = "{0,-30}{1}";
        const string timeFmt = "{0,-30}{1:yyyy-MM-dd
 HH:mm}";

        Console.WriteLine(
            "This example of selected TimeZone class "
 +
            "elements generates the following \n" +
            "output, which varies depending on the " +
            "time zone in which it is run.\n" );

        // Get the local time zone and the current local time and year.
        TimeZone localZone = TimeZone.CurrentTimeZone;
        DateTime currentDate = DateTime.Now;
        int      currentYear = currentDate.Year;

        // Display the names for standard time and daylight saving 
        // time for the local time zone.
        Console.WriteLine( dataFmt, "Standard time name:", 
            localZone.StandardName );
        Console.WriteLine( dataFmt, "Daylight saving time name:", 
            localZone.DaylightName );

        // Display the current date and time and show if they occur
 
        // in daylight saving time.
        Console.WriteLine( "\n" + timeFmt, "Current date and time:"
,
            currentDate );
        Console.WriteLine( dataFmt, "Daylight saving time?", 
            localZone.IsDaylightSavingTime( currentDate ) );

        // Get the current Coordinated Universal Time (UTC) and UTC
 
        // offset.
        DateTime currentUTC = 
            localZone.ToUniversalTime( currentDate );
        TimeSpan currentOffset = 
            localZone.GetUtcOffset( currentDate );

        Console.WriteLine( timeFmt, "Coordinated Universal Time:", 
            currentUTC );
        Console.WriteLine( dataFmt, "UTC offset:", currentOffset );

        // Get the DaylightTime object for the current year.
        DaylightTime daylight = 
            localZone.GetDaylightChanges( currentYear );

        // Display the daylight saving time range for the current year.
        Console.WriteLine( 
            "\nDaylight saving time for year {0}:",
 currentYear );
        Console.WriteLine( "{0:yyyy-MM-dd HH:mm} to " +
            "{1:yyyy-MM-dd HH:mm}, delta: {2}", 
            daylight.Start, daylight.End, daylight.Delta );
    } 
} 

/*
This example of selected TimeZone class elements generates the
 following
output, which varies depending on the time zone in which it is
 run.

Standard time name:           Pacific Standard Time
Daylight saving time name:    Pacific Standard Time

Current date and time:        2003-05-08 11:10
Daylight saving time?         True
Coordinated Universal Time:   2003-05-08 18:10
UTC offset:                   -07:00:00

Daylight saving time for year 2003:
2003-04-06 02:00 to 2003-10-26 02:00, delta: 01:00:00
*/ 
// Example of selected TimeZone class elements.
using namespace System;
using namespace System::Globalization;
int main()
{
   String^ dataFmt = "{0,-30}{1}";
   String^ timeFmt = "{0,-30}{1:yyyy-MM-dd HH:mm}";
   Console::WriteLine( "This example of selected TimeZone class
 "
   "elements generates the following \n"
   "output, which varies depending on the "
   "time zone in which it is run.\n" );
   
   // Get the local time zone and the current local time and year.
   TimeZone^ localZone = TimeZone::CurrentTimeZone;
   DateTime currentDate = DateTime::Now;
   int currentYear = currentDate.Year;
   
   // Display the names for standard time and daylight saving 
   // time for the local time zone.
   Console::WriteLine( dataFmt, "Standard time name:", localZone->StandardName
 );
   Console::WriteLine( dataFmt, "Daylight saving time name:", localZone->DaylightName
 );
   
   // Display the current date and time and show if they occur 
   // in daylight saving time.
   Console::WriteLine( String::Concat( "\n", timeFmt ), "Current date
 and time:", currentDate );
   Console::WriteLine( dataFmt, "Daylight saving time?", localZone->IsDaylightSavingTime(
 currentDate ) );
   
   // Get the current Coordinated Universal Time (UTC) and UTC 
   // offset.
   DateTime currentUTC = localZone->ToUniversalTime( currentDate );
   TimeSpan currentOffset = localZone->GetUtcOffset( currentDate );
   Console::WriteLine( timeFmt, "Coordinated Universal Time:", currentUTC
 );
   Console::WriteLine( dataFmt, "UTC offset:", currentOffset );
   
   // Get the DaylightTime object for the current year.
   DaylightTime^ daylight = localZone->GetDaylightChanges( currentYear );
   
   // Display the daylight saving time range for the current year.
   Console::WriteLine( "\nDaylight saving time for year {0}:",
 currentYear );
   Console::WriteLine( "{0:yyyy-MM-dd HH:mm} to "
   "{1:yyyy-MM-dd HH:mm}, delta: {2}", daylight->Start, daylight->End,
 daylight->Delta );
}

/*
This example of selected TimeZone class elements generates the
 following
output, which varies depending on the time zone in which it is
 run.

Standard time name:           Pacific Standard Time
Daylight saving time name:    Pacific Standard Time

Current date and time:        2003-05-08 11:11
Daylight saving time?         True
Coordinated Universal Time:   2003-05-08 18:11
UTC offset:                   -07:00:00

Daylight saving time for year 2003:
2003-04-06 02:00 to 2003-10-26 02:00, delta: 01:00:00
*/
// Example of selected TimeZone class elements.
import System.*;
import System.Globalization.*;

class TimeZoneDemo
{
    public static void main(String[]
 args)
    {
        final String dataFmt = "{0,-30}{1}";
        final String timeFmt = "{0,-30}{1:yyyy-MM-dd HH:mm}";

        Console.WriteLine(("This example of selected TimeZone class
 " 
            + "elements generates the following \n" 
            + "output, which varies depending on the " 
            + "time zone in which it is run.\n"));

        // Get the local time zone and the current local time and year.
        TimeZone localZone = TimeZone.get_CurrentTimeZone();
        DateTime currentDate = DateTime.get_Now();
        int currentYear = currentDate.get_Year();

        // Display the names for standard time and daylight saving 
        // time for the local time zone.
        Console.WriteLine(dataFmt, "Standard time name:",
            localZone.get_StandardName());
        Console.WriteLine(dataFmt, "Daylight saving time name:",
            localZone.get_DaylightName());

        // Display the current date and time and show if they occur
 
        // in daylight saving time.
        Console.WriteLine("\n" + timeFmt, "Current date and time:",
 
            currentDate);
        Console.WriteLine(dataFmt, "Daylight saving time?",
            String.valueOf(localZone.IsDaylightSavingTime(currentDate)));

        // Get the current Coordinated Universal Time (UTC) and UTC
 
        // offset.
        DateTime currentUTC = localZone.ToUniversalTime(currentDate);
        TimeSpan currentOffset = localZone.GetUtcOffset(currentDate);

        Console.WriteLine(timeFmt,"Coordinated Universal Time:", currentUTC);
        Console.WriteLine(dataFmt, "UTC offset:", currentOffset);

        // Get the DaylightTime object for the current year.
        DaylightTime daylight = localZone.GetDaylightChanges(currentYear);

        // Display the daylight saving time range for the current year.
        Console.WriteLine("\nDaylight saving time for year
 {0}:", 
            String.valueOf(currentYear));
        Console.WriteLine("{0:yyyy-MM-dd HH:mm} to " + 
            "{1:yyyy-MM-dd HH:mm},delta: {2}",
            daylight.get_Start(), daylight.get_End(),
            daylight.get_Delta());
    } //main
} //TimeZoneDemo

/*
This example of selected TimeZone class elements generates the
 following
output, which varies depending on the time zone in which it is
 run.

Standard time name:           Pacific Standard Time
Daylight saving time name:    Pacific Standard Time

Current date and time:        2003-05-08 11:10
Daylight saving time?         True
Coordinated Universal Time:   2003-05-08 18:10
UTC offset:                   -07:00:00

Daylight saving time for year 2003:
2003-04-06 02:00 to 2003-10-26 02:00, delta: 01:00:00
*/
継承階層継承階層
System.Object
  System.TimeZone
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

TimeZone コンストラクタ


TimeZone プロパティ


TimeZone メソッド


パブリック メソッドパブリック メソッド

プロテクト メソッドプロテクト メソッド
参照参照

関連項目

TimeZone クラス
System 名前空間

TimeZone メンバ

タイム ゾーン表します

TimeZone データ型公開されるメンバを以下の表に示します


プロテクト コンストラクタプロテクト コンストラクタ
  名前 説明
プロテクト メソッド TimeZone TimeZone クラス新しインスタンス初期化します。
パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ StandardName 標準タイム ゾーン名を取得します
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

TimeZone クラス
System 名前空間

TIME ZONE

出典: フリー百科事典『ウィキペディア(Wikipedia)』 (2023/06/09 02:54 UTC 版)

TIME ZONE
男闘呼組シングル
初出アルバム『NEW BEST 男闘呼組
B面 秋 IT’S A BALLAD
リリース
規格 EPレコード
カセットテープ
8cmCD
ジャンル J-POP
レーベル BMGビクターRCA
作詞 大津あきら
作曲 Mark Davis
チャート最高順位
男闘呼組 シングル 年表

(1988年)
TIME ZONE
(1989年)
CROSS TO YOU/ROCKIN' MY SOUL
(1989年)
テンプレートを表示

TIME ZONE」(タイム・ゾーン)は男闘呼組の3枚目のシングルで、1989年2月28日に発売された[2]

内容

表題曲の「TIME ZONE」は時計メーカー「セイコー」のCMソングに起用されていた[3]。シングル表題曲でタイアップを獲得した作品は当楽曲のみである。カップリング曲の「秋 -It's a ballad-」は、前作のシングル「」をバラード風にリメイクしたものである[3]

2枚目のアルバム『男闘呼組 二枚目』には収録されておらず[4]、表題曲は2枚目のベスト・アルバムNEW BEST 男闘呼組』に[5]、カップリング曲は1枚目のベスト・アルバム『BEST OF BALLADS』にそれぞれ初めて収録された[6]

1989年末に放送された「第40回NHK紅白歌合戦」(第2部)へ2年連続2回目の出場を果たしたが[7]、男闘呼組の紅白出演はこの年が最後となっている。

収録曲

作詞:大津あきら 作曲・編曲:Mark Davis

  1. TIME ZONE
  2. 秋 IT’S A BALLAD

参加ミュージシャン

販売形態

規格 発売日 リリース 品番 備考
EP 1989年2月28日 (1989-02-28) BMGビクター B07S-42 A面:TIME ZONE
B面:秋 It's a ballad
CT B10T-42 A面:TIME ZONE(歌入り/オリジナル・カラオケ)
B面:秋 It's a ballad(歌入り/オリジナル・カラオケ)
CD B10D-119 1:TIME ZONE
2:秋 It's a ballad

収録アルバム

脚注

  1. ^ TIME ZONE|男闘呼組”. ORICON NEWS. 2023年5月2日閲覧。
  2. ^ 男闘呼組 / TIME ZONE[廃盤]”. CDJournal WEB. 2022年4月19日閲覧。
  3. ^ a b 「男闘呼組」の元メンバー・高橋和也(52)と成田昭次(53)の2ショットが話題に!!”. Middle Edge. 2022年4月19日閲覧。
  4. ^ 男闘呼組二枚目|男闘呼組”. ORICON NEWS. 2022年4月19日閲覧。
  5. ^ a b c NEW BEST 男闘呼組|男闘呼組”. ORICON NEWS. 2022年4月19日閲覧。
  6. ^ a b BEST OF BALLADS|男闘呼組”. ORICON NEWS. 2022年4月19日閲覧。
  7. ^ NHK紅白歌合戦ヒストリー”. NHK. 2022年4月19日閲覧。
  8. ^ ヒット・コレクション|男闘呼組”. ORICON NEWS. 2022年4月19日閲覧。
  9. ^ 続・青春歌年鑑 ’89 PLUS|オムニバス”. ORICON NEWS. 2022年4月19日閲覧。

関連項目


「Time zone」の例文・使い方・用例・文例

Weblio日本語例文用例辞書はプログラムで機械的に例文を生成しているため、不適切な項目が含まれていることもあります。ご了承くださいませ。



固有名詞の分類


英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「timezone」の関連用語

timezoneのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



timezoneのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
実用日本語表現辞典実用日本語表現辞典
Copyright © 2025実用日本語表現辞典 All Rights Reserved.
デジタル大辞泉デジタル大辞泉
(C)Shogakukan Inc.
株式会社 小学館
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.
ウィキペディアウィキペディア
All text is available under the terms of the GNU Free Documentation License.
この記事は、ウィキペディアのTIME ZONE (改訂履歴)の記事を複製、再配布したものにあたり、GNU Free Documentation Licenseというライセンスの下で提供されています。 Weblio辞書に掲載されているウィキペディアの記事も、全てGNU Free Documentation Licenseの元に提供されております。
Tanaka Corpusのコンテンツは、特に明示されている場合を除いて、次のライセンスに従います:
 Creative Commons Attribution (CC-BY) 2.0 France.
この対訳データはCreative Commons Attribution 3.0 Unportedでライセンスされています。
浜島書店 Catch a Wave
Copyright © 1995-2025 Hamajima Shoten, Publishers. All rights reserved.
株式会社ベネッセコーポレーション株式会社ベネッセコーポレーション
Copyright © Benesse Holdings, Inc. All rights reserved.
研究社研究社
Copyright (c) 1995-2025 Kenkyusha Co., Ltd. All rights reserved.
日本語WordNet日本語WordNet
日本語ワードネット1.1版 (C) 情報通信研究機構, 2009-2010 License All rights reserved.
WordNet 3.0 Copyright 2006 by Princeton University. All rights reserved. License
日外アソシエーツ株式会社日外アソシエーツ株式会社
Copyright (C) 1994- Nichigai Associates, Inc., All rights reserved.
「斎藤和英大辞典」斎藤秀三郎著、日外アソシエーツ辞書編集部編
EDRDGEDRDG
This page uses the JMdict dictionary files. These files are the property of the Electronic Dictionary Research and Development Group, and are used in conformance with the Group's licence.

©2025 GRAS Group, Inc.RSS