有些函数使用new来分配内存而没有空闲内存?会导致内存泄漏吗?

时间:2017-05-25 03:50:53

标签: c++ memory-leaks crypto++

使用Crypto ++,例如:

StreamTransformationFilter stfEncryptor(cbcEncryption, new StringSink( ciphertext ) );
stfEncryptor.Put( reinterpret_cast<const unsigned char*>( plaintext.c_str() ), plaintext.length() + 1 );
stfEncryptor.MessageEnd();

为什么使用new分配内存但没有空闲内存?它会导致内存泄漏吗?

0 个答案:

没有答案