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 Time(GMT)」や「Coordinated Universal Time(UTC)」、「Daylight Saving Time(DST)」などがある。これらは全て、時間を計測し、管理するための概念や制度である。「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 クラス
アセンブリ: mscorlib (mscorlib.dll 内)



選択した 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.TimeZone


Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


TimeZone コンストラクタ
アセンブリ: mscorlib (mscorlib.dll 内)


Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


TimeZone プロパティ
TimeZone メソッド

名前 | 説明 | |
---|---|---|
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 ( Object から継承されます。) |
![]() | GetDaylightChanges | 特定年度の夏時間の期間を返します。 |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 ( Object から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 ( Object から継承されます。) |
![]() | GetUtcOffset | 指定した現地時間の世界協定時刻 (UTC: Coordinated Universal Time) オフセットを返します。 |
![]() | IsDaylightSavingTime | オーバーロードされます。 指定した日付と時刻が、夏時間の期間内かどうかを示す値を返します。 |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 ( Object から継承されます。) |
![]() | ToLocalTime | 指定した世界協定時刻 (UTC: Coordinated Universal Time) に対応する現地時間を返します。 |
![]() | ToString | 現在の Object を表す String を返します。 ( Object から継承されます。) |
![]() | ToUniversalTime | 指定した現地時間に対応する世界協定時刻 (UTC: Coordinated Universal Time) を返します。 |

名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 ( Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 ( Object から継承されます。) |

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



名前 | 説明 | |
---|---|---|
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 (Object から継承されます。) |
![]() | GetDaylightChanges | 特定年度の夏時間の期間を返します。 |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 (Object から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 (Object から継承されます。) |
![]() | GetUtcOffset | 指定した現地時間の世界協定時刻 (UTC: Coordinated Universal Time) オフセットを返します。 |
![]() | IsDaylightSavingTime | オーバーロードされます。 指定した日付と時刻が、夏時間の期間内かどうかを示す値を返します。 |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 (Object から継承されます。) |
![]() | ToLocalTime | 指定した世界協定時刻 (UTC: Coordinated Universal Time) に対応する現地時間を返します。 |
![]() | ToString | 現在の Object を表す String を返します。 (Object から継承されます。) |
![]() | ToUniversalTime | 指定した現地時間に対応する世界協定時刻 (UTC: Coordinated Universal Time) を返します。 |

名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 (Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 (Object から継承されます。) |

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 | |||
チャート最高順位 | ||||
男闘呼組 シングル 年表 | ||||
| ||||
「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
- TIME ZONE
- 秋 IT’S A BALLAD
参加ミュージシャン
販売形態
規格 | 発売日 | リリース | 品番 | 備考 |
---|---|---|---|---|
EP | 1989年2月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 |
収録アルバム
- TIME ZONE
- NEW BEST 男闘呼組(1994年)[5]
- HIT COLLECTION(1999年)[8]
- オムニバスアルバム『続・青春歌年鑑 '89 PLUS』(2002年)[9]
- 秋 -It's a ballad-
- BEST OF BALLADS(1992年)[6]
- NEW BEST 男闘呼組(1994年)[5]
- 『NEW BEST 男闘呼組』の収録曲に「秋」と書かれているが、収録はこちらのバージョン
脚注
- ^ “TIME ZONE|男闘呼組”. ORICON NEWS. 2023年5月2日閲覧。
- ^ “男闘呼組 / TIME ZONE[廃盤]”. CDJournal WEB. 2022年4月19日閲覧。
- ^ a b “「男闘呼組」の元メンバー・高橋和也(52)と成田昭次(53)の2ショットが話題に!!”. Middle Edge. 2022年4月19日閲覧。
- ^ “男闘呼組二枚目|男闘呼組”. ORICON NEWS. 2022年4月19日閲覧。
- ^ a b c “NEW BEST 男闘呼組|男闘呼組”. ORICON NEWS. 2022年4月19日閲覧。
- ^ a b “BEST OF BALLADS|男闘呼組”. ORICON NEWS. 2022年4月19日閲覧。
- ^ “NHK紅白歌合戦ヒストリー”. NHK. 2022年4月19日閲覧。
- ^ “ヒット・コレクション|男闘呼組”. ORICON NEWS. 2022年4月19日閲覧。
- ^ “続・青春歌年鑑 ’89 PLUS|オムニバス”. ORICON NEWS. 2022年4月19日閲覧。
関連項目
「Time zone」の例文・使い方・用例・文例
- The Malay Times に掲載されていた、非常勤の下級アナリストの職に関する広告についてご連絡を差し上げています。
- 彼女の15 冊の出版物のうち10 冊が、Brooklyn Timesのベストセラーリストの首位を占めたという事実は、多くの人々が彼女のことを、肥満に苦しむ国の救済者だと考えている証拠である。
- 最近着の London Times に曰く
- オックスフォード運動の創設者の原則で、『Tracts for the Times』と呼ばれるパンフレットで提唱された
- 抗うつ剤(商標名Serzone)
固有名詞の分類
- timezoneのページへのリンク