Edevil C ++-template typename VC and GNU Compiler

Source: Internet
Author: User

When using 'typedef 'to re-define types in template scopes, VC compiler have no restriction in the use of key work 'typename', but GNU did, Let's see following examples:

 

Template <typename classt> <br/> class testtemplate <br/> {<br/> typedef typename classt mytype; // OK on VC compiler <br/> typedef typename classt mytype2; // error on GNU Compiler, because the type classt is not pending </P> <p> typedef typename STD: vector <classt >:: iterator itertype; // both go well on VC and GNU <br/> typedef STD: vector <classt >:: iterator itertype; // both error on VC and GNU, because the type vector <> is pending (because classt is unknown on First compilation </P> <p> };

 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.