<legend id='mMGgv'><style id='mMGgv'><dir id='mMGgv'><q id='mMGgv'></q></dir></style></legend>

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

      <tfoot id='mMGgv'></tfoot>

      在 C++ 中检查是否 std::vector<string>包含一定的

      时间:2023-09-15

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

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

            <legend id='qd3G6'><style id='qd3G6'><dir id='qd3G6'><q id='qd3G6'></q></dir></style></legend>

              • 本文介绍了在 C++ 中检查是否 std::vector<string>包含一定的价值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                是否有任何内置函数告诉我我的向量是否包含某个元素例如

                Is there any built in function which tells me that my vector contains a certain element or not e.g.

                std::vector<string> v;
                v.push_back("abc");
                v.push_back("xyz");
                
                if (v.contains("abc")) // I am looking for one such feature, is there any
                                       // such function or i need to loop through whole vector?
                

                推荐答案

                您可以使用 <代码>std::find如下:

                You can use std::find as follows:

                if (std::find(v.begin(), v.end(), "abc") != v.end())
                {
                  // Element in vector.
                }
                

                为了能够使用std::find:include .

                这篇关于在 C++ 中检查是否 std::vector<string>包含一定的价值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:声明一个二维向量 下一篇:如何将 vector::push_back()` 与结构一起使用?

                相关文章

                最新文章

                1. <legend id='46sRZ'><style id='46sRZ'><dir id='46sRZ'><q id='46sRZ'></q></dir></style></legend>
                  <i id='46sRZ'><tr id='46sRZ'><dt id='46sRZ'><q id='46sRZ'><span id='46sRZ'><b id='46sRZ'><form id='46sRZ'><ins id='46sRZ'></ins><ul id='46sRZ'></ul><sub id='46sRZ'></sub></form><legend id='46sRZ'></legend><bdo id='46sRZ'><pre id='46sRZ'><center id='46sRZ'></center></pre></bdo></b><th id='46sRZ'></th></span></q></dt></tr></i><div id='46sRZ'><tfoot id='46sRZ'></tfoot><dl id='46sRZ'><fieldset id='46sRZ'></fieldset></dl></div>

                  <tfoot id='46sRZ'></tfoot>
                    <bdo id='46sRZ'></bdo><ul id='46sRZ'></ul>

                    <small id='46sRZ'></small><noframes id='46sRZ'>