Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これが C++ で正確に何を意味するのか誰か教えてもらえますか?
typedef int MPI_Datatype; #define MPI_CHAR ((MPI_Datatype)1)
これは一種のキャスティングですか?
はい、キャストです。A1自体は 型intですが、そのキャストによりMPI_Datatype.
1
int
MPI_Datatype
これは C スタイルのキャストです。MPI の C++ バインディングは完全なものではなく、現在は非推奨になっています。