• <i id='2VzP4'><tr id='2VzP4'><dt id='2VzP4'><q id='2VzP4'><span id='2VzP4'><b id='2VzP4'><form id='2VzP4'><ins id='2VzP4'></ins><ul id='2VzP4'></ul><sub id='2VzP4'></sub></form><legend id='2VzP4'></legend><bdo id='2VzP4'><pre id='2VzP4'><center id='2VzP4'></center></pre></bdo></b><th id='2VzP4'></th></span></q></dt></tr></i><div id='2VzP4'><tfoot id='2VzP4'></tfoot><dl id='2VzP4'><fieldset id='2VzP4'></fieldset></dl></div>

      <small id='2VzP4'></small><noframes id='2VzP4'>

      1. <legend id='2VzP4'><style id='2VzP4'><dir id='2VzP4'><q id='2VzP4'></q></dir></style></legend>

        <tfoot id='2VzP4'></tfoot>
        • <bdo id='2VzP4'></bdo><ul id='2VzP4'></ul>

        哪个更快/首选:memset 或 for 循环将双精度数组归零

        时间:2023-09-16

          • <bdo id='u6i8W'></bdo><ul id='u6i8W'></ul>
            <tfoot id='u6i8W'></tfoot>
            • <legend id='u6i8W'><style id='u6i8W'><dir id='u6i8W'><q id='u6i8W'></q></dir></style></legend>

                  <tbody id='u6i8W'></tbody>

                <i id='u6i8W'><tr id='u6i8W'><dt id='u6i8W'><q id='u6i8W'><span id='u6i8W'><b id='u6i8W'><form id='u6i8W'><ins id='u6i8W'></ins><ul id='u6i8W'></ul><sub id='u6i8W'></sub></form><legend id='u6i8W'></legend><bdo id='u6i8W'><pre id='u6i8W'><center id='u6i8W'></center></pre></bdo></b><th id='u6i8W'></th></span></q></dt></tr></i><div id='u6i8W'><tfoot id='u6i8W'></tfoot><dl id='u6i8W'><fieldset id='u6i8W'></fieldset></dl></div>

                <small id='u6i8W'></small><noframes id='u6i8W'>

                  本文介绍了哪个更快/首选:memset 或 for 循环将双精度数组归零?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  double d[10];
                  int length = 10;
                  
                  memset(d, length * sizeof(double), 0);
                  
                  //or
                  
                  for (int i = length; i--;)
                    d[i] = 0.0;
                  

                  推荐答案

                  请注意,对于 memset,您必须传递字节数,而不是元素数,因为这是一个旧的 C 函数:

                  Note that for memset you have to pass the number of bytes, not the number of elements because this is an old C function:

                  memset(d, 0, sizeof(double)*length);
                  

                  memset 可以更快,因为它是用汇编程序编写的,而 std::fill 是一个模板函数,它只是在内部执行循环.

                  memset can be faster since it is written in assembler, whereas std::fill is a template function which simply does a loop internally.

                  但是为了类型安全和更易读的代码我会推荐 std::fill() - 这是 C++ 做事的方式,并考虑 memset 如果需要在代码中的这个地方进行性能优化.

                  But for type safety and more readable code I would recommend std::fill() - it is the c++ way of doing things, and consider memset if a performance optimization is needed at this place in the code.

                  这篇关于哪个更快/首选:memset 或 for 循环将双精度数组归零?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:布尔值在编译器中为 8 位.对它们的操作效率低下 下一篇:GCC 内联 C++ 函数是否没有“inline"关键字?

                  相关文章

                  最新文章

                  <tfoot id='Cohva'></tfoot>
                    <bdo id='Cohva'></bdo><ul id='Cohva'></ul>

                  1. <i id='Cohva'><tr id='Cohva'><dt id='Cohva'><q id='Cohva'><span id='Cohva'><b id='Cohva'><form id='Cohva'><ins id='Cohva'></ins><ul id='Cohva'></ul><sub id='Cohva'></sub></form><legend id='Cohva'></legend><bdo id='Cohva'><pre id='Cohva'><center id='Cohva'></center></pre></bdo></b><th id='Cohva'></th></span></q></dt></tr></i><div id='Cohva'><tfoot id='Cohva'></tfoot><dl id='Cohva'><fieldset id='Cohva'></fieldset></dl></div>
                  2. <small id='Cohva'></small><noframes id='Cohva'>

                    1. <legend id='Cohva'><style id='Cohva'><dir id='Cohva'><q id='Cohva'></q></dir></style></legend>