STL模板错误报告过长如何处理?

问题描述 投票:0回答:2

当使用c++ STL编程,或大量使用“模板化”时,发生一些编译错误,通常错误报告很长,并且往往给出太多不需要的信息。 我说的是 gcc,我不知道与其他编译器是否不同,但有时即使只是一个拼写错误,也需要一段时间才能捕获错误并清除

<ns::type<ns::type<ns::type, ns::type<...><ns::type<...> > > > >

我正在寻找一些编译器标志、技巧、解决方法或方法(我目前复制了错误并放入两行我所拥有的以及编译器使用想要的内容并删除变量书签...(对于一个不存在的程序来说有点悲伤) -如此不常见的 ctrl+s 执行得不好))可以使这个任务更快或者只是帮助我(甚至只有一些 IDE 错误语法突出显示...)

c++ templates stl
2个回答
13
投票

STLFilt:C++ 的 STL 错误消息解密器 是一种流行的工具,用于过滤这些详细的错误消息并将其转换为更易读的内容。

来自他们的网站:

STLFilt 最初被设想为一种教学辅助工具,让学生 参加 C++ 和/或 STL 特定的研讨会来理解典型的意义 过度膨胀的 STL 错误消息。然而今天,甚至一些 C++ 专家 采用 STLFilt 进行日常开发。结果可能 并不总是完美的,但大多数时候信息都会丢失 解密对于正在调试的应用程序并不重要。 其余时间,解密很容易绕过。

每个平台(编译器/库集)的分布是 独立并适应该平台的特性。每个 Perl 脚本对所有标准执行基本的正则表达式替换 (以及扩展,如果库中存在)STL 组件,同时 某些版本的脚本在消息方面走得更远 排序、换行、库头错误处理等,就像我一样 单方面认为适合该平台。

这里是演示运行,展示了它如何有用:

源程序:

#include <map>
#include <algorithm>
#include <cmath>

const int values[] = { 1,2,3,4,5 };
const int NVALS = sizeof values / sizeof (int);

int main()
{
    using namespace std;

    typedef map<int, double> valmap;

    valmap m;

    for (int i = 0; i < NVALS; i++)
        m.insert(make_pair(values[i], pow(values[i], .5)));

    valmap::iterator it = 100;              // error
    valmap::iterator it2(100);              // error
    m.insert(1,2);                          // error

    return 0;
}

首先,使用 MinGW gcc 3.2 编译器进行未经过滤的运行:

d:\src\cl\demo>c++2 rtmap.cpp
rtmap.cpp: In function `int main()':
rtmap.cpp:19: invalid conversion from `int' to `
   std::_Rb_tree_node<std::pair<const int, double> >*'
rtmap.cpp:19:   initializing argument 1 of `std::_Rb_tree_iterator<_Val, _Ref,
   _Ptr>::_Rb_tree_iterator(std::_Rb_tree_node<_Val>*) [with _Val =
   std::pair<const int, double>, _Ref = std::pair<const int, double>&, _Ptr =
   std::pair<const int, double>*]'
rtmap.cpp:20: invalid conversion from `int' to `
   std::_Rb_tree_node<std::pair<const int, double> >*'
rtmap.cpp:20:   initializing argument 1 of `std::_Rb_tree_iterator<_Val, _Ref,
   _Ptr>::_Rb_tree_iterator(std::_Rb_tree_node<_Val>*) [with _Val =
   std::pair<const int, double>, _Ref = std::pair<const int, double>&, _Ptr =
   std::pair<const int, double>*]'
E:/GCC3/include/c++/3.2/bits/stl_tree.h: In member function `void
   std::_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::insert_unique(_II,

   _II) [with _InputIterator = int, _Key = int, _Val = std::pair<const int,
   double>, _KeyOfValue = std::_Select1st<std::pair<const int, double> >,
   _Compare = std::less<int>, _Alloc = std::allocator<std::pair<const int,
   double> >]':
E:/GCC3/include/c++/3.2/bits/stl_map.h:272:   instantiated from `void std::map<_
Key, _Tp, _Compare, _Alloc>::insert(_InputIterator, _InputIterator) [with _Input
Iterator = int, _Key = int, _Tp = double, _Compare = std::less<int>, _Alloc = st
d::allocator<std::pair<const int, double> >]'
rtmap.cpp:21:   instantiated from here
E:/GCC3/include/c++/3.2/bits/stl_tree.h:1161: invalid type argument of `unary *
   '

并使用 gcc 特定的代理 c++ 进行过滤运行:

d:\src\cl\demo>c++ rtmap.cpp
  *** {BD Software Proxy c++ for gcc v3.01} STL Message Decryption is ON! ***
rtmap.cpp: In function `int main()':
rtmap.cpp:19: invalid conversion from `int' to `iter'
rtmap.cpp:19:   initializing argument 1 of `iter(iter)'
rtmap.cpp:20: invalid conversion from `int' to `iter'
rtmap.cpp:20:   initializing argument 1 of `iter(iter)'
stl_tree.h: In member function `void map<int,double>::insert_unique(_II, _II)':
    [STL Decryptor: Suppressed 1 more STL standard header message]
rtmap.cpp:21:   instantiated from here
stl_tree.h:1161: invalid type argument of `unary *'

STL Decryptor reminder:
    Use the /hdr:L option to see all suppressed standard lib headers

[注:演示运行是在 80 列控制台窗口中执行的 STLFilt 的智能换行已启用,并且具有内部 开关设置为产生尽可能简洁的消息。更详细的是 可通过定制解密器的选项来使用。]

我看到的唯一缺点是它错误地标记了 C++ 标准库。 :(

这是 STLFilt 作者的相关期刊文章


4
投票

一些人制作了工具来执行此操作,因为没有内置任何东西。 Google 上的吨数,但返回最高结果:http://www.bdsoft.com/tools/stlfilt.html

它应该与 Visual Studio 和 gcc 兼容。

编辑::

我需要输入更少的内容才能及时获得输入:)

© www.soinside.com 2019 - 2024. All rights reserved.