gpt4 book ai didi

c++ - cpoll_cppsp 框架是否像 Ur/Web 一样类型安全?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:44:12 32 4
gpt4 key购买 nike

看着这个答案 ( https://stackoverflow.com/a/2856961/1793629 ) 我认为 Ur/Web 是一个非常安全的平台。

现在查看此基准 (http://www.techempower.com/benchmarks/#section=data-r9&hw=peak&test=json),我发现 cpoll_cppsp 框架在大多数用例中排名第一或前 5。

来自 ( http://xa.us.to/cppsp/documentation.cppsp) 的示例代码是

<%#
#include <vector>
#include <string>
vector<string> hello() {
return {"hello", "world", "!"};
}
%>
<html>
<body>
<table>
auto a = hello();
for(int i = 0; i < a.size(); i++) {
%>
<tr>
<td><%=a[i] %></td>
</tr>
<%
}
%>
</table>
</body>
</html>

文档很差,所以也许有人可以解释这个东西是类型安全的并且具有与 Ur/Web 相似的功能(此处列出:https://stackoverflow.com/a/2856961/1793629)?

提前谢谢你。

最佳答案

由于 cppsp 解析语言是 c++,它不是类型安全的(参见 http://en.wikipedia.org/wiki/Type_safety#C.2B.2B_Examples)。

由于指针无效,可能会发生崩溃。

https://stackoverflow.com/a/2856961/1793629 中列出的每个功能可能会被写得不好的 C++ 代码破坏。

关于c++ - cpoll_cppsp 框架是否像 Ur/Web 一样类型安全?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24037788/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com