Generics Flashcards
With generics what can you do?
With generics, you can create classes and methods that are
independent of contained types.
What is generics?
Generics in C# allow you to define classes, methods, delegates, and interfaces with a placeholder for the type of data they store or use.
What are the benefits of generics?
Code reusability, type safety, and performance are benefits.
Value types are stored on the ______, reference types are stored on the ______.
stack, heap.
What is boxing?
The conversion from a value type to a reference type is known as boxing.
What is unboxing?
When a boxed value type can be converted to a value type.
With unboxing, the cast operator is required.
Is an array size static?
An array’s size is set at compile-time and is static
How is an ArrayList different from arrays?
- Items can be added and removed dynamically, and the ArrayList resizes itself.
- ArrayList belongs to System.Collections namespace.
- Add() method can be used to add items.
- ArrayList is not type-safe.
What are some benefits of generic lists compared to arrays and arraylists?
- List<T> stores elements of the specified type and it grows automatically.</T>
- List<T> can store multiple null and duplicate elements.</T>
- List<T> can be accessed using indexer, for loop or foreach statement.</T>
- LINQ can be used to query List<T> collection.</T>
- List<T> is ideal for storing and retrieving large number of elements.</T>
What’s the syntax to create a default constructor for an empty list?
List<int> myList = new List<int>();</int></int>
What’s the syntax to create a default constructor for a list with a capacity of 10?
List<int> myList = new List<int>(10);</int></int>
What does this code do?
Sets the myList capacity to 20.
What does this code do?
TrimExcess removes the unneeded capacity. However, because the relocation takes time, TrimExcess has no effect if the item count is more than 90 percent of capacity.
What does this code do?
Creates a list of int type and assigns it values and then prints “Total elements: “ and the count of all the elements.
Create the code for a foreach loop that iterates through the items in myList and prints the item
foreach (var item in myList)
Console.WriteLine(item);
Create the code for a foreach method that iterates through the items in myList and prints the item
myList.ForEach(item => Console.WriteLine(item));
Create the code for a for loop that iterates through the items in myList and prints the item
for (int i=0; i<myList.Count; i++)
Console.WriteLine(myList[i]);
What is the syntax for the insert method?
list_name.Insert(int index, T item);
What is the syntax for the remove method?
list_name.Remove(T item);
What is the syntax for the removeAt method?
list_name.RemoveAt(int index);
What is IndexOf?
The method IndexOf requires an object as parameter and returns the index of the first occurrence of the item if it is found inside the collection.
If the item is not found, -1 is returned.
What is the contains method?
The method Contains requires an object as parameter and returns true if the item is found inside the collection.
If the item is not found, false is returned.
What is the find method?
The method Find requires a predicate match or a lambda expression as parameter and returns the object itself if it is found inside the collection.
If the object is not found, null is returned.
What is a dictionary?
is a generic collection that stores key-value pairs. It provides fast lookups, additions, and removals of elements by their keys. The TKey represents the type of keys in the dictionary, and TValue represents the type of values.
What does the ContainsKey() method do?
Checks if a key exists in the dictionary.
What is the syntax for a dictionary named myDictionary that takes in int as a key and string as it’s value?
Dictionary<int, string> myDictionary = new Dictionary<int, string>();
What is a queue?
A queue is a collection whose elements are processed first-in-first-out (FIFO).
Can you access queue elements using an indexer?
False.
What is the enqueue method?
A method that allows you to add an item to it, which is put at the end of the queue.
What is the dequeue method?
A method to get items from the beginning of the queue.
What is a stack?
The item that is added last to the stack is read first, so the stack is a last-in-first-out (LIFO) container.
What method adds an item to the stack?
Push.
What method removes the item that was added last?
Pop.