菜鸟教程小白 发表于 2022-12-13 09:04:59

objective-c - char 数组到 [NSString stringWithFormat :]


                                            <p><p>我的代码中有这段代码(md5 散列)</p>

<pre><code>unsigned char result;
// fill result with data
[NSString stringWithFormat:
            @&#34;%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x&#34;,
            result, result, result, result,
            result, result, result, result,
            result, result, result, result,
            result, result, result, result
            ];
</code></pre>

<p>有没有比这段代码更快的方法,如何在 NSString 中推送整个数组?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这是将 16 个字符十六进制转换为 <code>NSString</code> 的最快方法。如果您经常这样做,请将其包装在一个函数中,这样您就只有一份代码副本。 :)</p></p>
                                   
                                                <p style="font-size: 20px;">关于objective-c - char 数组到 ,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/7283469/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/7283469/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: objective-c - char 数组到 [NSString stringWithFormat :]