D編程 元組(Tuples)

2021-09-01 10:32 更新

元組用于將多個值組合為單個對象,元組包含一系列元素,元素可以是類型,表達(dá)式或別名,元組的數(shù)量和元素在編譯時是固定的,并且在運(yùn)行時不能更改。

tuple()元組

元組可以通過函數(shù)tuple()構(gòu)造,元組的成員由索引值訪問,一個如下所示。

import std.stdio; 
import std.typecons; 
 
void main() { 
   auto myTuple=tuple(1, "Tuts"); 
   writeln(myTuple); 
   writeln(myTuple[0]); 
   writeln(myTuple[1]); 
}

編譯并執(zhí)行上述代碼后,將產(chǎn)生以下輸出-

Tuple!(int, string)(1, "Tuts") 
1 
Tuts

元組模板

Tuple也可以直接由Tuple模板而不是tuple()函數(shù)構(gòu)造,每個成員的類型和名稱被指定為兩個連續(xù)的模板參數(shù),使用模板創(chuàng)建時,可以通過屬性訪問成員。

import std.stdio; 
import std.typecons; 

void main() { 
   auto myTuple=Tuple!(int, "id",string, "value")(1, "Tuts"); 
   writeln(myTuple);  
   
   writeln("by index 0 : ", myTuple[0]); 
   writeln("by .id : ", myTuple.id); 
   
   writeln("by index 1 : ", myTuple[1]); 
   writeln("by .value ", myTuple.value); 
}

編譯并執(zhí)行上述代碼后,將產(chǎn)生以下輸出

Tuple!(int, "id", string, "value")(1, "Tuts") 
by index 0 : 1 
by .id : 1 
by index 1 : Tuts 
by .value Tuts

擴(kuò)展函數(shù)參數(shù)

Tuple的成員可以通過.expand屬性或切片進(jìn)行擴(kuò)展,該擴(kuò)展的值可以作為函數(shù)參數(shù)列表傳遞。一個如下所示。

import std.stdio; 
import std.typecons;
 
void method1(int a, string b, float c, char d) { 
   writeln("method 1 ",a,"\t",b,"\t",c,"\t",d); 
}
 
void method2(int a, float b, char c) { 
   writeln("method 2 ",a,"\t",b,"\t",c); 
}
 
void main() { 
   auto myTuple=tuple(5, "my string", 3.3, 'r'); 
   
   writeln("method1 call 1"); 
   method1(myTuple[]); 
   
   writeln("method1 call 2"); 
   method1(myTuple.expand); 
   
   writeln("method2 call 1"); 
   method2(myTuple[0], myTuple[$-2..$]); 
} 

編譯并執(zhí)行上述代碼后,將產(chǎn)生以下輸出-

method1 call 1 
method 1 5 my string 3.3 r
method1 call 2 
method 1 5 my string 3.3 r 
method2 call 1 
method 2 5 3.3 r 

Typetuple

Typetuple在std.typetuple模塊中定義,以逗號分隔的值和類型列表,TypeTuple用于創(chuàng)建參數(shù)列表,模板列表和數(shù)組文字列表。

import std.stdio; 
import std.typecons; 
import std.typetuple; 
 
alias Typetuple!(int, long) TL;  

void method1(int a, string b, float c, char d) { 
   writeln("method 1 ",a,"\t",b,"\t",c,"\t",d); 
} 

void method2(TL tl) { 
   writeln(tl[0],"\t", tl[1] ); 
} 
 
void main() { 
   auto arguments=TypeTuple!(5, "my string", 3.3,'r');  
   method1(arguments); 
   method2(5, 6L);  
}

編譯并執(zhí)行上述代碼后,將產(chǎn)生以下輸出-

method 1 5 my string 3.3 r 
5     6


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號