C# 等价于 C++ 映射<string,double>

时间:2023-02-03
本文介绍了C# 等价于 C++ 映射<string,double>的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我想为不同的帐户保留一些总计.在 C++ 中,我会像这样使用 STL:

I want to keep some totals for different accounts. In C++ I'd use STL like this:

map<string,double> accounts;

// Add some amounts to some accounts.
accounts["Fred"] += 4.56;
accounts["George"] += 1.00;
accounts["Fred"] += 1.00;

cout << "Fred owes me $" << accounts['Fred'] << endl;

现在,我将如何在 C# 中做同样的事情?

Now, how would I do the same thing in C# ?

推荐答案

大概:-

var accounts = new Dictionary<string, double>();

// Initialise to zero...

accounts["Fred"] = 0;
accounts["George"] = 0;
accounts["Fred"] = 0;

// Add cash.
accounts["Fred"] += 4.56;
accounts["George"] += 1.00;
accounts["Fred"] += 1.00;

Console.WriteLine("Fred owes me ${0}", accounts["Fred"]);

这篇关于C# 等价于 C++ 映射&lt;string,double&gt;的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

上一篇:让背景或相机“滚动"基于字符位置 下一篇:如何让 .NET Core 项目将 NuGet 引用复制到构建输出?

相关文章

最新文章