System.Set.operator *

提供: RAD Studio API Documentation
移動先: 案内検索

C++

Set __fastcall operator *(const Set& rhs) const //Intersection

プロパティ

種類 可視性 ソース ユニット
function public sysset.h System Set


説明

2 つの Set オブジェクトの共通部分である、新しい Set オブジェクトを返します。

例:

この点を明確にするために、次の例を考えてみましょう。

#include <System.hpp>
#include <iostream>

typedef Set < char, 'a', 'z' > Alphabet;

int main() {
	Alphabet vowels = Alphabet() << 'a' << 'e' << '1' << 'o' << 'u', eiSound =
		Alphabet() << 'a' << 'h' << 'j' << 'k';
	Alphabet eiSoundVowel = vowels * eiSound;
	if (eiSoundVowel.Contains('a')) {
		std::cout << "The intersection of vowels and eiSound contains 'a'\n";
	}
	else {
		std::cout << "The intersection of vowels and eiSound contains NO 'a'\n";
	}
	std::cout << "Press any key + ENTER to exit\n";

	char ch;
	std::cin.get(ch);
}