Giter Site home page Giter Site logo

compiling-principle-experiment's Introduction

Hi there 👋

课内(NJUPT)

🔭 学习过程 ...

课外

🔭 I’m currently working on ...

✨ I'm preparing myself for ...

🌱 I’m currently learning ...

compiling-principle-experiment's People

Contributors

denrydu avatar

Stargazers

 avatar

Watchers

 avatar

compiling-principle-experiment's Issues

文法分析程序修正

可能报错的程序段

位置:Compiling-principle-experiment/Parser/SyntacticParser.cpp

image

修改

for 语句中首项定义 set<T>::iterator it = set_T.begin(); 改为 typename set<T>::iterator it = set_T.begin(); ,即:

template <class T>
void check_set(set<T> set_T, string tip) {
	cout << endl;
	cout << endl << tip << endl;
	for(typename set<T>::iterator it = set_T.begin(); it != set_T.end(); it++) {
		cout << *it << " ";
	}
}

错误原因

模板参数作容器参数时会被编译器错认为是数据类型而导致编译不通过,应添加 typename 声明其为数据类型。

参考

https://bbs.csdn.net/topics/380129947?page=2

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.