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

ios - 为什么在Objective C中转换为字符串时char数组会插入尾随字符?


                                            <p><p>我正在尝试在 NSString 上编写一个快速类别来对字符串的内容进行 base64 编码。一切似乎都很好,除了在生成的字符串的尾端出现了额外的字符。谁能解释一下为什么下面的代码会产生下面的输出?</p>

<p>来源:</p>

<pre><code>const char base64CharSet = {
    &#39;A&#39;, &#39;B&#39;, &#39;C&#39;, &#39;D&#39;, &#39;E&#39;, &#39;F&#39;, &#39;G&#39;, &#39;H&#39;,
    &#39;I&#39;, &#39;J&#39;, &#39;K&#39;, &#39;L&#39;, &#39;M&#39;, &#39;N&#39;, &#39;O&#39;, &#39;P&#39;,
    &#39;Q&#39;, &#39;R&#39;, &#39;S&#39;, &#39;T&#39;, &#39;U&#39;, &#39;V&#39;, &#39;W&#39;, &#39;X&#39;,
    &#39;Y&#39;, &#39;Z&#39;, &#39;a&#39;, &#39;b&#39;, &#39;c&#39;, &#39;d&#39;, &#39;e&#39;, &#39;f&#39;,
    &#39;g&#39;, &#39;h&#39;, &#39;i&#39;, &#39;j&#39;, &#39;k&#39;, &#39;l&#39;, &#39;m&#39;, &#39;n&#39;,
    &#39;o&#39;, &#39;p&#39;, &#39;q&#39;, &#39;r&#39;, &#39;s&#39;, &#39;t&#39;, &#39;u&#39;, &#39;v&#39;,
    &#39;w&#39;, &#39;x&#39;, &#39;y&#39;, &#39;z&#39;, &#39;0&#39;, &#39;1&#39;, &#39;2&#39;, &#39;3&#39;,
    &#39;4&#39;, &#39;5&#39;, &#39;6&#39;, &#39;7&#39;, &#39;8&#39;, &#39;9&#39;, &#39;+&#39;, &#39;/&#39;
};

const char *input = &#34;Hello, World!&#34;;

int length = strlen(input);
int outlen = (length / 3) * 4;
int modlen = length % 3;
int rawlen = length - modlen;

if (modlen != 0)
    outlen += 4;

char output;

char inbuf, outbuf;
int inpos = 0, outpos = 0;

for (outpos = 0, inpos = 0; inpos &lt; rawlen; inpos += 3) {
    for (int i = 0; i &lt;3; i++) {
      int j = inpos + i;
      inbuf = j &lt; length ? input : 0;
    }

    outbuf =(inbuf &amp; 0xFC) &gt;&gt; 2;
    outbuf = ((inbuf &amp; 0x03) &lt;&lt; 4) | ((inbuf &amp; 0xF0) &gt;&gt; 4);
    outbuf = ((inbuf &amp; 0x0F) &lt;&lt; 2) | ((inbuf &amp; 0xC0) &gt;&gt; 6);
    outbuf =(inbuf &amp; 0x3F);

    output = base64CharSet];
    output = base64CharSet];
    output = base64CharSet];
    output = base64CharSet];
}

if (modlen &gt; 0) {
    char modbuf = {0, 0, 0};

    for (int i = 0; i &lt; modlen; i++) {
      int j = rawlen + i;
      modbuf = input;
    }

    outbuf =(modbuf &amp; 0xFC) &gt;&gt; 2;
    outbuf = ((modbuf &amp; 0x03) &lt;&lt; 4) | ((modbuf &amp; 0xF0) &gt;&gt; 4);
    outbuf = ((modbuf &amp; 0x0F) &lt;&lt; 2) | ((modbuf &amp; 0xC0) &gt;&gt; 6);
    outbuf =(modbuf &amp; 0x3F);

    output = base64CharSet];
    output = base64CharSet];
    output = modlen == 2 ? base64CharSet] : &#39;=&#39;;
    output = &#39;=&#39;;
}

NSLog(@&#34;Input: &#39;%s&#39;, Length: %zd&#34;, input, strlen(input));
NSLog(@&#34;Output: &#39;%s&#39;, Length: %zd, Expected Length: %d&#34;, output, strlen(output), outlen);
</code></pre>

<p>输出:</p>

<pre><code>2013-03-19 14:46:51.568 Sandbox Input: &#39;Hello, World!&#39;, Length: 13
2013-03-19 14:46:51.569 Sandbox Output: &#39;SGVsbG8sIFdvcmxkIQ==wä]&#39;, Length: 23, Expected Length: 20
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><pre><code>2013-03-19 14:46:51.569 Sandbox Output: &#39;SGVsbG8sIFdvcmxkIQ==wä]&#39;, Length: 23, Expected Length: 20
</code></pre>

<p>最后的 goober 是因为您没有 NULL 终止输出缓冲区。 C 字符串要求字符串中最后一个字符之后的字符为 0(全为 0 位,而不是 ASCII "0":)。</p>

<hr/>

<blockquote>
<p>... appending to a full array would raise an exception ...</p>
</blockquote>

<p>欢迎来到 C!该语言类似于用剪刀奔跑。即使跌倒,也不会受伤。可能不会。</p>

<p>在这种情况下,您实际上并没有写入 NULL 字节,因此,C 字符串的打印只是读取您的字符串数组之后发生在堆栈上的任何内容。我没有审核代码以确定缓冲区的大小是否正确。 </p>

<p>假设您的所有数学运算都是正确的,您可以将缓冲区分配为比编码所需的长一个字节,然后将终止符放在那里。</p>

<pre><code>char output;
output = 0;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 为什么在Objective C中转换为字符串时char数组会插入尾随字符?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/15508231/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/15508231/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 为什么在Objective C中转换为字符串时char数组会插入尾随字符?