Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How is the C# Dictionary used this way in C# in depth 2nd Edition?

Tags:

c#

dictionary

I have come across the following code in C# in Depth 2nd Edition by Jon Skeet and I don't understand how it works.

Dictionary<string,int> frequencies;
frequencies = new Dictionary<string,int>();
string[] words = Regex.Split(text, @"\W+");
foreach (string word in words)
{
    if (frequencies.ContainsKey(word))
    {
        frequencies[word]++;
    }
    else
    {
        frequencies[word] = 1;
    }
}

Specifically how does the "word" key get added to the dictionary? As I see it, a new dictionary is created called frequencies, it is empty. There is then a method to split a string called text into an array of string using Regex.Split. So far all good. Next there is a foreach loop which loops through the array, but the next part trips me up, it is checking if frequencies contains the particular word, if it does then increase the value of it by 1 or if it doesn't yet have a value set it to 1. But how does the dictionary get populated with the "word" key in the first place to allow it to be checked?

It looks to happen in this line

frequencies[word] = 1;

But I can't find a reference anywhere that says specifying a dictionary object followed by square brackets and an assignment to a value also populates the key. I thought you needed to use the add method of the dictionary instance or do so when initializing the dictionary.

If I am correct what is the name of this action?

like image 507
BenM Avatar asked Sep 19 '13 11:09

BenM


People also ask

What do you mean by C?

C is an imperative procedural language supporting structured programming, lexical variable scope, and recursion, with a static type system. It was designed to be compiled to provide low-level access to memory and language constructs that map efficiently to machine instructions, all with minimal runtime support.

Is C still used in 2022?

C is one of the earliest and most widely used programming languages. C is the fourth most popular programming language in the world as of January 2022. Modern languages such as Go, Swift, Scala, and Python are not as popular as C. Where is C used today?

Is C or C+ Better?

Compared to C, C++ has significantly more libraries and functions to use. If you're working with complex software, C++ is a better fit because you have more libraries to rely on. Thinking practically, having knowledge of C++ is often a requirement for a variety of programming roles.

How is C language written?

C started with the BCPL language, Ken Thomson had access to a compiler for it that ran on their General Electrics 635 main frame. Unhappy with the language, Thomson used BCPL to write a compiler for the B language, an evolutionary step beyond BCPL that removed some of the technical problems in BCPL.


1 Answers

frequencies[word] = 1;

is the same as calling

frequencies.Add(word, 1);

if the key word does not already exist. Otherwise you override the value.

When you call [something] on a dictionary you get a value by key something. The same goes for setting. When setting a value you can call dictionary[key] = value.

The function used is the [] operator (brackets operator).

I dove into the Object Browser and found this about the [] operator of the generic dictionary:

public TValue this[TKey key] { get; set; } Member of System.Collections.Generic.Dictionary<TKey, TValue>

Summary: Gets or sets the value associated with the specified key.

Parameters: key: The key of the value to get or set.

Return Values: The value associated with the specified key. If the specified key is not found, a get operation throws a System.Collections.Generic.KeyNotFoundException, and a set operation creates a new element with the specified key.

Exceptions: System.ArgumentNullException: key is null. System.Collections.Generic.KeyNotFoundException: The property is retrieved and key does not exist in the collection.

like image 169
SynerCoder Avatar answered Nov 14 '22 22:11

SynerCoder