OperatingSystem.Clone メソッドとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > OperatingSystem.Clone メソッドの意味・解説 

OperatingSystem.Clone メソッド

このインスタンス同一OperatingSystem オブジェクト作成します

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

使用例使用例

Clone メソッド使用してOperatingSystem オブジェクトコピー作成するコード例次に示しますクローンと元のオブジェクト比較され、同じオブジェクトではないことが示されます。

' Example for the OperatingSystem.Clone method.
Imports System
Imports Microsoft.VisualBasic

Module CloneCompareDemo
    
    ' Copy, clone, and duplicate an OperatingSystem object.
    Sub CopyOperatingSystemObjects( )

        ' The Version object does not need to correspond to an 
        ' actual OS version.
        Dim verMMBVer As New
 Version( 5, 6, 7, 8 )
            
        Dim opCreate1 As New
 _
            OperatingSystem( PlatformID.Win32NT, verMMBVer )
            
        ' Create another OperatingSystem object with the same 
        ' parameters as opCreate1.
        Dim opCreate2 As New
 _
            OperatingSystem( PlatformID.Win32NT, verMMBVer )
            
        ' Clone opCreate1 and copy the opCreate1 reference.
        Dim opClone As OperatingSystem = _
            CType( opCreate1.Clone( ), OperatingSystem )
        Dim opCopy As OperatingSystem = opCreate1

        ' Compare the various objects for equality.
        Console.WriteLine( "{0,-50}{1}", _
            "Is the second object the same as the original?",
 _
            opCreate1.Equals( opCreate2 ) )
        Console.WriteLine( "{0,-50}{1}", _
            "Is the object clone the same as the original?",
 _
            opCreate1.Equals( opClone ) )
        Console.WriteLine( "{0,-50}{1}", _
            "Is the copied object the same as the original?",
 _
            opCreate1.Equals( opCopy ) )
    End Sub 
        
    Sub Main( )

        Console.WriteLine( _
            "This example of OperatingSystem.Clone( ) "
 & _
            "generates the following output." &
 vbCrLf )
        Console.WriteLine( _
            "Create an OperatingSystem object, and then "
 & _
            "create another object with the " &
 vbCrLf & _
            "same parameters. Clone and copy the "
 & _
            "original object, and then compare " &
 vbCrLf & _
            "each object with the original using the "
 & _
            "Equals( ) method. Equals( ) " & vbCrLf
 & _
            "returns true only when both " & _
            "references refer to the same object."
 & vbCrLf)
            
        CopyOperatingSystemObjects( )

    End Sub 
End Module 

' This example of OperatingSystem.Clone( ) generates the following output.
' 
' Create an OperatingSystem object, and then create another object with
 the
' same parameters. Clone and copy the original object, and then compare
' each object with the original using the Equals( ) method. Equals(
 )
' returns true only when both references refer to the same object.
' 
' Is the second object the same as the original?    False
' Is the object clone the same as the original?     False
' Is the copied object the same as the original?    True
// Example for the OperatingSystem.Clone method.
using System;

class CloneCompareDemo
{
    // Copy, clone, and duplicate an OperatingSystem object.
    static void CopyOperatingSystemObjects(
 )
    {
        // The Version object does not need to correspond to an 
        // actual OS version.
        Version verMMBVer = new Version( 5, 6, 7, 8 );
            
        OperatingSystem opCreate1 = new 
            OperatingSystem( PlatformID.Win32NT, verMMBVer );
            
        // Create another OperatingSystem object with the same 
        // parameters as opCreate1.
        OperatingSystem opCreate2 = new 
            OperatingSystem( PlatformID.Win32NT, verMMBVer );
            
        // Clone opCreate1 and copy the opCreate1 reference.
        OperatingSystem opClone = 
            (OperatingSystem)opCreate1.Clone( );
        OperatingSystem opCopy = opCreate1;

        // Compare the various objects for equality.
        Console.WriteLine( "{0,-50}{1}", 
            "Is the second object the same as the original?", 
            opCreate1.Equals( opCreate2 ) );
        Console.WriteLine( "{0,-50}{1}", 
            "Is the object clone the same as the original?", 
            opCreate1.Equals( opClone ) );
        Console.WriteLine( "{0,-50}{1}", 
            "Is the copied object the same as the original?", 
            opCreate1.Equals( opCopy ) );
    } 
        
    static void Main( )
    {
        Console.WriteLine(
            "This example of OperatingSystem.Clone( ) " +
            "generates the following output.\n" );
        Console.WriteLine(
            "Create an OperatingSystem object, and then " +
            "create another object with the \n" +
            "same parameters. Clone and copy the original " +
            "object, and then compare \n" +
            "each object with the original " +
            "using the Equals( ) method. Equals( ) \n"
 +
            "returns true only when both " +
            "references refer to the same object.\n" );
            
        CopyOperatingSystemObjects( );
    } 
} 

/*
This example of OperatingSystem.Clone( ) generates the following output.

Create an OperatingSystem object, and then create another object with the
same parameters. Clone and copy the original object, and then compare
each object with the original using the Equals( ) method. Equals(
 )
returns true only when both references refer to the same object.

Is the second object the same as the original?    False
Is the object clone the same as the original?     False
Is the copied object the same as the original?    True
*/
// Example for the OperatingSystem::Clone method.
using namespace System;

// Copy, clone, and duplicate an OperatingSystem object.
void CopyOperatingSystemObjects()
{
   
   // The Version object does not need to correspond to an 
   // actual OS version.
   Version^ verMMBVer = gcnew Version( 5,6,7,8 );
   OperatingSystem^ opCreate1 = gcnew OperatingSystem( PlatformID::Win32NT,verMMBVer
 );
   
   // Create another OperatingSystem object with the same 
   // parameters as opCreate1.
   OperatingSystem^ opCreate2 = gcnew OperatingSystem( PlatformID::Win32NT,verMMBVer
 );
   
   // Clone opCreate1 and copy the opCreate1 reference.
   OperatingSystem^ opClone = safe_cast<OperatingSystem^>(opCreate1->Clone());
   OperatingSystem^ opCopy = opCreate1;
   
   // Compare the various objects for equality.
   Console::WriteLine( "{0,-50}{1}", "Is the second object the same
 as the original?", opCreate1->Equals( opCreate2 ) );
   Console::WriteLine( "{0,-50}{1}", "Is the object clone the same
 as the original?", opCreate1->Equals( opClone ) );
   Console::WriteLine( "{0,-50}{1}", "Is the copied object the same
 as the original?", opCreate1->Equals( opCopy ) );
}

int main()
{
   Console::WriteLine( "This example of OperatingSystem::Clone( ) "
   "generates the following output.\n" );
   Console::WriteLine( "Create an OperatingSystem object, and then "
   "create another object with the \n"
   "same parameters. Clone and copy the original "
   "object, and then compare \n"
   "each object with the original "
   "using the Equals( ) method. Equals( ) \n"
   "returns true only when both "
   "references refer to the same object.\n" );
   CopyOperatingSystemObjects();
}

/*
This example of OperatingSystem::Clone( ) generates the following output.

Create an OperatingSystem object, and then create another object with the
same parameters. Clone and copy the original object, and then compare
each object with the original using the Equals( ) method. Equals(
 )
returns true only when both references refer to the same object.

Is the second object the same as the original?    False
Is the object clone the same as the original?     False
Is the copied object the same as the original?    True
*/
// Example for the OperatingSystem.Clone method.
import System.*;

class CloneCompareDemo
{
    // Copy, clone, and duplicate an OperatingSystem object.
    static void CopyOperatingSystemObjects()
    {
        // The Version object does not need to correspond to an 
        // actual OS version.
        Version verMMBVer = new Version(5, 6, 7, 8);
        OperatingSystem opCreate1 =
            new OperatingSystem(PlatformID.Win32NT, verMMBVer);

        // Create another OperatingSystem object with the same 
        // parameters as opCreate1.
        OperatingSystem opCreate2 =
            new OperatingSystem(PlatformID.Win32NT, verMMBVer);

        // Clone opCreate1 and copy the opCreate1 reference.
        OperatingSystem opClone = ((OperatingSystem)(opCreate1.Clone()));
        OperatingSystem opCopy = opCreate1;

        // Compare the various objects for equality.
        Console.WriteLine("{0,-50}{1}",
            "Is the second object the same as the original?",
            System.Convert.ToString(opCreate1.Equals(opCreate2)));
        Console.WriteLine("{0,-50}{1}", 
            "Is the object clone the same as the original?",
            System.Convert.ToString(opCreate1.Equals(opClone)));
        Console.WriteLine("{0,-50}{1}", 
            "Is the copied object the same as the original?",
            System.Convert.ToString(opCreate1.Equals(opCopy)));
    } //CopyOperatingSystemObjects

    public static void main(String[]
 args)
    {
        Console.WriteLine(("This example of OperatingSystem.Clone( ) "
 
            + "generates the following output.\n"));
        Console.WriteLine(("Create an OperatingSystem object, and then "
            + "create another object with the \n" 
            + "same parameters. Clone and copy the original "
            + "object, and then compare \n" + "each object with the
 original "
            + "using the Equals( ) method. Equals( ) \n"
 
            + "returns true only when both " 
            + "references refer to the same object.\n"));
        CopyOperatingSystemObjects();
    } //main
} //CloneCompareDemo

/*
This example of OperatingSystem.Clone( ) generates the following output.

Create an OperatingSystem object, and then create another object with the
same parameters. Clone and copy the original object, and then compare
each object with the original using the Equals( ) method. Equals(
 )
returns true only when both references refer to the same object.

Is the second object the same as the original?    False
Is the object clone the same as the original?     False
Is the copied object the same as the original?    True
*/
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照


このページでは「.NET Framework クラス ライブラリ リファレンス」からOperatingSystem.Clone メソッドを検索した結果を表示しています。
Weblioに収録されているすべての辞書からOperatingSystem.Clone メソッドを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からOperatingSystem.Clone メソッド を検索

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

辞書ショートカット

すべての辞書の索引

OperatingSystem.Clone メソッドのお隣キーワード
検索ランキング

   

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



OperatingSystem.Clone メソッドのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS