C#で3タプルまたはトリプルタプルを作成するにはどうすればよいですか?
Tuple
−
で使用されます- データセットへのより簡単なアクセス。
- データセットの操作が簡単になります。
- 単一のデータセットを表すため。
- メソッドから複数の値を返すには
- メソッドに複数の値を渡すには
例
ここで、C#で3タプルを実装する例を見てみましょう-
using System; public class Demo { public static void Main(string[] args) { Tuple<int,string,string> tuple = new Tuple<int,string,string>(35, "steve", "katie"); Console.WriteLine("Value (Item1)= " + tuple.Item1); Console.WriteLine("Value (Item2)= " + tuple.Item2); Console.WriteLine("Value (Item3)= " + tuple.Item3); if (tuple.Item1 == 35) { Console.WriteLine("Exists: Tuple Value = " +tuple.Item1); } if (tuple.Item2 == "jack") { Console.WriteLine("Exists: Tuple Value = " +tuple.Item2); } if (tuple.Item3 == "katie") { Console.WriteLine("Exists: Tuple Value = " +tuple.Item3); } } }
出力
これにより、次の出力が生成されます-
Value (Item1)= 35 Value (Item2)= steve Value (Item3)= katie Exists: Tuple Value = 35 Exists: Tuple Value = katie
例
ここで、C#で3タプルを実装する別の例を見てみましょう-
using System; public class Demo { public static void Main(string[] args) { Tuple<string,string,string> tuple = new Tuple<string,string,string>("nathan", "steve", "katie"); Console.WriteLine("Value (Item1)= " + tuple.Item1); Console.WriteLine("Value (Item2)= " + tuple.Item2); Console.WriteLine("Value (Item3)= " + tuple.Item3); if (tuple.Item1 == "nathan") { Console.WriteLine("Exists: Tuple Value = " +tuple.Item1); } if (tuple.Item2 == "jack") { Console.WriteLine("Exists: Tuple Value = " +tuple.Item2); } if (tuple.Item3 == "katie") { Console.WriteLine("Exists: Tuple Value = " +tuple.Item3); } } }
出力
これにより、次の出力が生成されます-
Value (Item1)= nathan Value (Item2)= steve Value (Item3)= katie Exists: Tuple Value = nathan Exists: Tuple Value = katie
-
非リテラルのPythonタプルを作成するにはどうすればよいですか?
最初にリストを作成し、次に変更する単一の値を変更し、最後に、リテラル以外のPythonタプルを作成する場合は、それをタプルに変換できます。たとえば、 def create_non_literal_tuple(a, b, c): x = [1] * a x[c] = b return tuple(x) create_non_literal_tuple(6, 0, 2) これにより、出力が得られます: (1, 1, 0, 1, 1, 1) 長さ6の配列の位置2の0。
-
Pythonで空のタプルを作成するにはどうすればよいですか?
割り当てステートメントの括弧内に要素を指定しないことで、空のタプルオブジェクトを作成できます。空のタプルオブジェクトも、引数なしでtuple()組み込み関数によって作成されます >>> T1 = () >>> T1 () >>> T1 = tuple() >>> T1 ()