LinkedList<T> Oluşturucular
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
LinkedList<T> sınıfının yeni bir örneğini başlatır.
Aşırı Yüklemeler
LinkedList<T>() |
Boş olan sınıfın LinkedList<T> yeni bir örneğini başlatır. |
LinkedList<T>(IEnumerable<T>) |
Belirtilen IEnumerable öğeden kopyalanan öğeleri içeren ve kopyalanan öğe sayısını karşılamak için yeterli kapasiteye sahip olan sınıfın yeni bir örneğini LinkedList<T> başlatır. |
LinkedList<T>(SerializationInfo, StreamingContext) |
Geçersiz.
sınıfının belirtilen SerializationInfo ve StreamingContextile serileştirilebilir yeni bir örneğini LinkedList<T> başlatır. |
LinkedList<T>()
- Kaynak:
- LinkedList.cs
- Kaynak:
- LinkedList.cs
- Kaynak:
- LinkedList.cs
Boş olan sınıfın LinkedList<T> yeni bir örneğini başlatır.
public:
LinkedList();
public LinkedList ();
Public Sub New ()
Örnekler
Aşağıdaki kod örneği türünde Stringbir LinkedList<T> oluşturur ve başlatır, birkaç düğüm ekler ve içeriğini görüntüler.
#using <System.dll>
using namespace System;
using namespace System::Collections;
using namespace System::Collections::Generic;
void main()
{
// Create and initialize a new LinkedList.
LinkedList< String^ > ^ ll = gcnew LinkedList< String^ >;
ll->AddLast(L"red");
ll->AddLast(L"orange");
ll->AddLast(L"yellow");
ll->AddLast(L"orange");
// Display the contents of the LinkedList.
if (ll->Count > 0)
{
Console::WriteLine(L"The first item in the list is {0}.", ll->First->Value);
Console::WriteLine(L"The last item in the list is {0}.", ll->Last->Value);
Console::WriteLine(L"The LinkedList contains:");
for each (String^ s in ll)
{
Console::WriteLine(L" {0}", s);
}
}
else
{
Console::WriteLine(L"The LinkedList is empty.");
}
}
/* This code produces the following output.
The first item in the list is red.
The last item in the list is orange.
The LinkedList contains:
red
orange
yellow
orange
*/
using System;
using System.Collections;
using System.Collections.Generic;
public class GenericCollection
{
public static void Main()
{
// Create and initialize a new LinkedList.
LinkedList<String> ll = new LinkedList<String>();
ll.AddLast("red");
ll.AddLast("orange");
ll.AddLast("yellow");
ll.AddLast("orange");
// Display the contents of the LinkedList.
if (ll.Count > 0)
{
Console.WriteLine("The first item in the list is {0}.", ll.First.Value);
Console.WriteLine("The last item in the list is {0}.", ll.Last.Value);
Console.WriteLine("The LinkedList contains:");
foreach (String s in ll)
Console.WriteLine(" {0}", s);
}
else
{
Console.WriteLine("The LinkedList is empty.");
}
}
}
/* This code produces the following output.
The first item in the list is red.
The last item in the list is orange.
The LinkedList contains:
red
orange
yellow
orange
*/
Imports System.Collections
Imports System.Collections.Generic
Public Class GenericCollection
Public Shared Sub Main()
' Create and initialize a new LinkedList.
Dim ll As New LinkedList(Of String)()
ll.AddLast("red")
ll.AddLast("orange")
ll.AddLast("yellow")
ll.AddLast("orange")
' Display the contents of the LinkedList.
If ll.Count > 0 Then
Console.WriteLine("The first item in the list is {0}.", ll.First.Value)
Console.WriteLine("The last item in the list is {0}.", ll.Last.Value)
Console.WriteLine("The LinkedList contains:")
For Each s As String In ll
Console.WriteLine(" {0}", s)
Next s
Else
Console.WriteLine("The LinkedList is empty.")
End If
End Sub
End Class
'This code produces the following output.
'
'The first item in the list is red.
'The last item in the list is orange.
'The LinkedList contains:
' red
' orange
' yellow
' orange
Açıklamalar
LinkedList<T>başvuru türleri için geçerli Value olarak kabul eder null
ve yinelenen değerlere izin verir.
LinkedList<T> boşsa First ve Last özellikleri içerirnull
.
Bu oluşturucu bir O(1) işlemidir.
Şunlara uygulanır
LinkedList<T>(IEnumerable<T>)
- Kaynak:
- LinkedList.cs
- Kaynak:
- LinkedList.cs
- Kaynak:
- LinkedList.cs
Belirtilen IEnumerable öğeden kopyalanan öğeleri içeren ve kopyalanan öğe sayısını karşılamak için yeterli kapasiteye sahip olan sınıfın yeni bir örneğini LinkedList<T> başlatır.
public:
LinkedList(System::Collections::Generic::IEnumerable<T> ^ collection);
public LinkedList (System.Collections.Generic.IEnumerable<T> collection);
new System.Collections.Generic.LinkedList<'T> : seq<'T> -> System.Collections.Generic.LinkedList<'T>
Public Sub New (collection As IEnumerable(Of T))
Parametreler
- collection
- IEnumerable<T>
IEnumerable Öğeleri yeni LinkedList<T>öğesine kopyalanan öğesidir.
Özel durumlar
collection
, null
değeridir.
Örnekler
Bu oluşturucuyu içeren bir örnek için sınıfına LinkedList<T> bakın.
Açıklamalar
LinkedList<T>başvuru türleri için geçerli Value olarak kabul eder null
ve yinelenen değerlere izin verir.
Öğe yoksa collection
yeni LinkedList<T> boş olur ve First ve Last özellikleri içerir null
.
Bu oluşturucu, içindeki öğelerin collection
sayısı olan n
bir O(n) işlemidir.
Şunlara uygulanır
LinkedList<T>(SerializationInfo, StreamingContext)
- Kaynak:
- LinkedList.cs
- Kaynak:
- LinkedList.cs
- Kaynak:
- LinkedList.cs
Dikkat
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
sınıfının belirtilen SerializationInfo ve StreamingContextile serileştirilebilir yeni bir örneğini LinkedList<T> başlatır.
protected:
LinkedList(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected LinkedList (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected LinkedList (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Collections.Generic.LinkedList<'T> : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Collections.Generic.LinkedList<'T>
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.Collections.Generic.LinkedList<'T> : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Collections.Generic.LinkedList<'T>
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parametreler
- info
- SerializationInfo
serileştirmek SerializationInfoLinkedList<T>için gereken bilgileri içeren bir nesne.
- context
- StreamingContext
StreamingContext ile ilişkilendirilmiş serileştirilmiş akışın kaynağını ve hedefini LinkedList<T>içeren bir nesne.
- Öznitelikler
Açıklamalar
LinkedList<T>başvuru türleri için geçerli Value olarak kabul eder null
ve yinelenen değerlere izin verir.
LinkedList<T> boşsa First ve Last özellikleri içerirnull
.
Bu oluşturucu bir O(n) işlemidir.