1

我目前正在学习 C++,并且我对可以作为其 C++ 后端部分快速的 Web 前端感兴趣。哪些前端可以很好地组合?

不寻找最好的,只寻找那些可以在不使用 cgi 的情况下加入 cpp 的。所以请不要投反对票。

- -更新 - - -

我实际上是用 Java 开发我的 Web 应用程序,而且很好。我正在看 C++ 方面,因为我想尝试一下。3 年前,我在大学课堂上学习了一点 C++,现在我正在阅读 Deitel 第 8 版书,以涵盖我错过的内容并回顾我以前学到的内容。我会阅读您的所有建议,并在生产力和速度之间选择一个平衡点。我承认我是一个表演成瘾者,这就是我对此感兴趣的原因。在问这个之前,我认为 Python 可以用作 Web 前端。但也许它不接近 C++ 性能,这就是你没有提到它的原因。

------更新#2-----

将 python web 框架或 java servlet 用于 web 引擎然后将其连接到 C++ 会有什么行为?tomcat 或 python 服务器会成为瓶颈吗?

4

1 回答 1

1

I think it's hard to find a web front end in C++ (probably what you are looking for is a C++ equivalent of GWT). Back ends are more common and there're some frameworks to create web apps in C++. Facebook has Hiphop for converting PHP code to C++ to speed up. But everything mostly boils down to HTML(5)/JavaScript/CSS. However, Qt framework has integration with WebKit and you can build applications using this framework which leverages HTML5/JavaScript/CSS3 in a C++ app (I'm not too familiar with it, so may be wrong). Take a look at this by the way.

EDIT: On further googling, found Wt, this might look interesting. :)

于 2013-01-03T19:08:26.640 回答