简体   繁体   中英

what is the meaning of this syntax of size_t?

I found this line during debugging lzma decompression but I can not understand what is this line meaning???

 SizeT inSizeCur = inSize, outSizeCur, dicPos;

I know that inSizeCur is variable of type SizeT which is assigned the value of inSize .
but what are , outSizeCur, dicPos ??

This line is declaring 3 variables having type SizeT . It is equivalent to:

SizeT inSizeCur = inSize;
SizeT outSizeCur;
SizeT dicPos;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM