菜鸟教程小白 发表于 2022-12-13 08:49:01

objective-c - 需要帮助解决一个吞噬 RAM 的循环


                                            <p><p>我正试图让这个循环释放它使用的所有内存,但它仍然很快就会吞噬 RAM。希望有人能告诉我如何让字符串按应有的方式释放。基本上,循环将 double 写入文本文件,有时它必须写入几兆字节。</p>

<pre><code>for (int i = 0; i &lt; number_of_samples; i++)
{
    if (print_str == nil)
    {
      print_str = [ init];
    }

    NSString* add_str = [ initWithFormat:@&#34;\n%0.06f&#34;, number_of_seconds/number_of_samples*i];
    ;
    ;

    for (int g = 0; g &lt; number_of_channels; g++)
    {
      add_str = [ initWithFormat:@&#34;\t%f&#34;, data_buffer];
      ;
      ;
    }

    if (i % 100 == 0 &amp;&amp; i != 0)
    {
      fprintf(c_file_handle, &#34;%s&#34;, );
      ;
      print_str = nil;
    }
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以对字符串做的唯一事情是不使用 <strong>print_str</strong>,因为它仍然保存所有字符串并占用内存。使用 <strong>fopen</strong> 中的 <strong>"a"</strong> 选项将数据追加到文件中,并将格式化字符串 <strong>add_str</strong> 追加到文件中,而不是将其添加到内存中缓冲。 </p></p>
                                   
                                                <p style="font-size: 20px;">关于objective-c - 需要帮助解决一个吞噬 RAM 的循环,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/7099752/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/7099752/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: objective-c - 需要帮助解决一个吞噬 RAM 的循环