Compressor 建構函式

定義

多載

Compressor(IOutputStream)

建立冰箱的實例。

Compressor(IOutputStream, CompressAlgorithm, UInt32)

建立冰箱的實例。

Compressor(IOutputStream)

建立冰箱的實例。

public:
 Compressor(IOutputStream ^ underlyingStream);
 Compressor(IOutputStream const& underlyingStream);
public Compressor(IOutputStream underlyingStream);
function Compressor(underlyingStream)
Public Sub New (underlyingStream As IOutputStream)

參數

underlyingStream
IOutputStream

壓縮資訊串流,由冰箱寫入。

另請參閱

適用於

Compressor(IOutputStream, CompressAlgorithm, UInt32)

建立冰箱的實例。

public:
 Compressor(IOutputStream ^ underlyingStream, CompressAlgorithm algorithm, unsigned int blockSize);
 Compressor(IOutputStream const& underlyingStream, CompressAlgorithm const& algorithm, uint32_t const& blockSize);
public Compressor(IOutputStream underlyingStream, CompressAlgorithm algorithm, uint blockSize);
function Compressor(underlyingStream, algorithm, blockSize)
Public Sub New (underlyingStream As IOutputStream, algorithm As CompressAlgorithm, blockSize As UInteger)

參數

underlyingStream
IOutputStream

壓縮資訊串流,由冰箱寫入。

algorithm
CompressAlgorithm

壓縮演算法,由壓縮器用來寫入 underlyingStream

blockSize
UInt32

unsigned int

uint32_t

壓縮演算法所使用的中繼緩衝區位元組大小。 值為 0,指定壓縮演算法將使用其預設區塊大小。 此參數的有效非零值為 32Kb 到 64Mb。

另請參閱

適用於