web-dev-qa-db-ja.com

C ++ std :: pairのC#アナログとは何ですか?

興味がある:C++のstd::pairのC#の類似物は何ですか? System.Web.UI.Pairクラスを見つけましたが、テンプレートベースのものを好みます。

ありがとうございました!

264

タプル 。NET4.0以降で利用可能 およびジェネリックをサポート:

Tuple<string, int> t = new Tuple<string, int>("Hello", 4);

以前のバージョンでは、System.Collections.Generic.KeyValuePair<K, V>または次のようなソリューションを使用できます。

public class Pair<T, U> {
    public Pair() {
    }

    public Pair(T first, U second) {
        this.First = first;
        this.Second = second;
    }

    public T First { get; set; }
    public U Second { get; set; }
};

そして、次のように使用します。

Pair<String, int> pair = new Pair<String, int>("test", 2);
Console.WriteLine(pair.First);
Console.WriteLine(pair.Second);

この出力:

test
2

または、この連鎖ペアでさえ:

Pair<Pair<String, int>, bool> pair = new Pair<Pair<String, int>, bool>();
pair.First = new Pair<String, int>();
pair.First.First = "test";
pair.First.Second = 12;
pair.Second = true;

Console.WriteLine(pair.First.First);
Console.WriteLine(pair.First.Second);
Console.WriteLine(pair.Second);

その出力:

test
12
true
299
Jorge Ferreira

System.Web.UIにはPairクラスが含まれていました。これは、ASP.NET 1.1で内部ViewState構造として頻繁に使用されていたためです。

2017年8月更新:C#7.0/.NET Framework 4.7は、 System.ValueTuple structを使用して、名前付きアイテムでタプルを宣言する構文を提供します。

//explicit Item typing
(string Message, int SomeNumber) t = ("Hello", 4);
//or using implicit typing 
var t = (Message:"Hello", SomeNumber:4);

Console.WriteLine("{0} {1}", t.Message, t.SomeNumber);

その他の構文例については、 MSDN を参照してください。

2012年6月の更新:Tuples はバージョン4.0以降、.NETの一部でした。

。NET4.0に含めることを説明した以前の記事 とジェネリックのサポート:

Tuple<string, int> t = new Tuple<string, int>("Hello", 4);
86
Jay Walker

残念ながら、何もありません。多くの状況でSystem.Collections.Generic.KeyValuePair<K, V>を使用できます。

または、匿名タイプを使用して、少なくともローカルでタプルを処理できます。

var x = new { First = "x", Second = 42 };

最後の選択肢は、独自のクラスを作成することです。

38
Konrad Rudolph

C#には tuples バージョン4.0以降があります。

20
Kenan E. K.

一部の答えは間違っているように見えますが、

  1. (a、b)と(a、c)のペアをどのように保存するかは辞書を使用できません。ペアの概念を、キーと値の連想検索と混同しないでください
  2. 上記のコードの多くは疑わしいようです

こちらが私のペアクラスです

public class Pair<X, Y>
{
    private X _x;
    private Y _y;

    public Pair(X first, Y second)
    {
        _x = first;
        _y = second;
    }

    public X first { get { return _x; } }

    public Y second { get { return _y; } }

    public override bool Equals(object obj)
    {
        if (obj == null)
            return false;
        if (obj == this)
            return true;
        Pair<X, Y> other = obj as Pair<X, Y>;
        if (other == null)
            return false;

        return
            (((first == null) && (other.first == null))
                || ((first != null) && first.Equals(other.first)))
              &&
            (((second == null) && (other.second == null))
                || ((second != null) && second.Equals(other.second)));
    }

    public override int GetHashCode()
    {
        int hashcode = 0;
        if (first != null)
            hashcode += first.GetHashCode();
        if (second != null)
            hashcode += second.GetHashCode();

        return hashcode;
    }
}

以下にテストコードを示します。

[TestClass]
public class PairTest
{
    [TestMethod]
    public void pairTest()
    {
        string s = "abc";
        Pair<int, string> foo = new Pair<int, string>(10, s);
        Pair<int, string> bar = new Pair<int, string>(10, s);
        Pair<int, string> qux = new Pair<int, string>(20, s);
        Pair<int, int> aaa = new Pair<int, int>(10, 20);

        Assert.IsTrue(10 == foo.first);
        Assert.AreEqual(s, foo.second);
        Assert.AreEqual(foo, bar);
        Assert.IsTrue(foo.GetHashCode() == bar.GetHashCode());
        Assert.IsFalse(foo.Equals(qux));
        Assert.IsFalse(foo.Equals(null));
        Assert.IsFalse(foo.Equals(aaa));

        Pair<string, string> s1 = new Pair<string, string>("a", "b");
        Pair<string, string> s2 = new Pair<string, string>(null, "b");
        Pair<string, string> s3 = new Pair<string, string>("a", null);
        Pair<string, string> s4 = new Pair<string, string>(null, null);
        Assert.IsFalse(s1.Equals(s2));
        Assert.IsFalse(s1.Equals(s3));
        Assert.IsFalse(s1.Equals(s4));
        Assert.IsFalse(s2.Equals(s1));
        Assert.IsFalse(s3.Equals(s1));
        Assert.IsFalse(s2.Equals(s3));
        Assert.IsFalse(s4.Equals(s1));
        Assert.IsFalse(s1.Equals(s4));
    }
}
11
Antony

辞書などの場合は、System.Collections.Generic.KeyValuePair <TKey、TValue>を探しています。

7
OregonGhost

TuplesのC#実装を作成しました。これは、2〜5個の値の問題を一般的に解決します- ブログ投稿

3
Erik Forbes

達成したい内容に応じて、 KeyValuePair を試してみてください。

エントリのキーを変更できないという事実は、エントリ全体をKeyValuePairの新しいインスタンスに置き換えるだけで修正できます。

3
Grimtron

私はクイックグーグルの直後に同じ質問をしていました.System.Web.UI以外の.NETにはペアクラスがあることがわかりました^〜^( http:/ /msdn.Microsoft.com/en-us/library/system.web.ui.pair.aspx )goodnessは、コレクションフレームワークの代わりにそこに置く理由を知っています

2
Lyra

通常、次のようにTupleクラスを独自の汎用ラッパーに拡張します。

public class Statistic<T> : Tuple<string, T>
{
    public Statistic(string name, T value) : base(name, value) { }
    public string Name { get { return this.Item1; } }
    public T Value { get { return this.Item2; } }
}

そして次のように使用します:

public class StatSummary{
      public Statistic<double> NetProfit { get; set; }
      public Statistic<int> NumberOfTrades { get; set; }

      public StatSummary(double totalNetProfit, int numberOfTrades)
      {
          this.TotalNetProfit = new Statistic<double>("Total Net Profit", totalNetProfit);
          this.NumberOfTrades = new Statistic<int>("Number of Trades", numberOfTrades);
      }
}

StatSummary summary = new StatSummary(750.50, 30);
Console.WriteLine("Name: " + summary.NetProfit.Name + "    Value: " + summary.NetProfit.Value);
Console.WriteLine("Name: " + summary.NumberOfTrades.Value + "    Value: " + summary.NumberOfTrades.Value);
2
parliament

.NET 4.0以降では、System.Tuple<T1, T2>クラスがあります。

// pair is implicitly typed local variable (method scope)
var pair = System.Tuple.Create("Current century", 21);
2
Serge Mikhailov

PowerCollectionsライブラリ(以前はWintellectから入手できましたが、現在Codeplex @ http://powercollections.codeplex.com でホストされています)には、一般的なペア構造があります。

1
James Webster

カスタムクラスまたは.Net 4.0タプルとは別に、C#7.0以降、ValueTupleと呼ばれる新しい機能があります。これは、この場合に使用できる構造体です。書く代わりに:

Tuple<string, int> t = new Tuple<string, int>("Hello", 4);

t.Item1およびt.Item2を介して値にアクセスする場合、次のように簡単に実行できます。

(string message, int count) = ("Hello", 4);

あるいは:

(var message, var count) = ("Hello", 4);
1
Pawel Gradecki

上記を機能させるために(辞書のキーとしてペアが必要でした)。追加する必要がありました:

    public override Boolean Equals(Object o)
    {
        Pair<T, U> that = o as Pair<T, U>;
        if (that == null)
            return false;
        else
            return this.First.Equals(that.First) && this.Second.Equals(that.Second);
    }

そして一度やったら

    public override Int32 GetHashCode()
    {
        return First.GetHashCode() ^ Second.GetHashCode();
    }

コンパイラの警告を抑制します。

1
Andrew Stein