LinkedList<T> Constructores
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Inicializa una nueva instancia de la clase LinkedList<T>.
Sobrecargas
LinkedList<T>() |
Inicializa una nueva instancia de la clase LinkedList<T> que está vacía. |
LinkedList<T>(IEnumerable<T>) |
Inicializa una nueva instancia de la clase LinkedList<T> que contiene elementos copiados de la interfaz IEnumerable especificada y tiene una capacidad suficiente para alojar el número de elementos copiados. |
LinkedList<T>(SerializationInfo, StreamingContext) |
Obsoletos.
Inicializa una nueva instancia de la clase LinkedList<T>, que se puede serializar con los objetos SerializationInfo y StreamingContext especificados. |
LinkedList<T>()
- Source:
- LinkedList.cs
- Source:
- LinkedList.cs
- Source:
- LinkedList.cs
Inicializa una nueva instancia de la clase LinkedList<T> que está vacía.
public:
LinkedList();
public LinkedList ();
Public Sub New ()
Ejemplos
En el ejemplo de código siguiente se crea e inicializa un LinkedList<T> de tipo String, se agregan varios nodos y, a continuación, se muestra su contenido.
#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
Comentarios
LinkedList<T>null
acepta como válido Value para los tipos de referencia y permite valores duplicados.
Si está LinkedList<T> vacío, las First propiedades y Last contienen null
.
Este constructor es una operación O(1).
Se aplica a
LinkedList<T>(IEnumerable<T>)
- Source:
- LinkedList.cs
- Source:
- LinkedList.cs
- Source:
- LinkedList.cs
Inicializa una nueva instancia de la clase LinkedList<T> que contiene elementos copiados de la interfaz IEnumerable especificada y tiene una capacidad suficiente para alojar el número de elementos copiados.
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))
Parámetros
- collection
- IEnumerable<T>
IEnumerable cuyos elementos se copian en el nuevo LinkedList<T>.
Excepciones
collection
es null
.
Ejemplos
Para obtener un ejemplo que incluya este constructor, vea la LinkedList<T> clase .
Comentarios
LinkedList<T>null
acepta como válido Value para los tipos de referencia y permite valores duplicados.
Si collection
no tiene ningún elemento, el nuevo LinkedList<T> está vacío y las First propiedades y Last contienen null
.
Este constructor es una operación O(n), donde n
es el número de elementos de collection
.
Se aplica a
LinkedList<T>(SerializationInfo, StreamingContext)
- Source:
- LinkedList.cs
- Source:
- LinkedList.cs
- Source:
- LinkedList.cs
Precaución
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
Inicializa una nueva instancia de la clase LinkedList<T>, que se puede serializar con los objetos SerializationInfo y StreamingContext especificados.
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)
Parámetros
- info
- SerializationInfo
Objeto SerializationInfo que contiene la información que se requiere para serializar LinkedList<T>.
- context
- StreamingContext
Objeto StreamingContext que contiene el origen y el destino de la secuencia serializada asociada al LinkedList<T>.
- Atributos
Comentarios
LinkedList<T>null
acepta como válido Value para los tipos de referencia y permite valores duplicados.
Si está LinkedList<T> vacío, las First propiedades y Last contienen null
.
Este constructor es una operación O(n).