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.
書く:
typename list< SKPair<VALUETYPE> >::iterator it = bucket->begin();
->が必要です。
->
bucketはポインターとして宣言されているため、そのメンバーにアクセスするには逆参照演算子が必要です。
bucket
auto it = bucket->begin();
C++11 がauto利用できる場合は、このトリックを実行する必要があります。
auto