看板 C_and_CPP 關於我們 聯絡資訊
unsigned char pLength; FILE *stream = 0; stream = fopen( "COM4", "r" ); while( true ) { fread( &pLength, 1, 1, stream ); if( pLength ~= 170 ) break; } 請問一下,在C++裡 ~= 這個運算符號的作用到底是什麼, 查不到相關資訊 -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 220.134.193.87
stimim:沒看過耶,知道他用的是哪一版的 compiler 嗎? 09/01 17:58
uranusjr:我猜他只是想打 != 打錯XD 09/01 18:02
stupid0319:我猜他想打 pLength^170 09/01 19:28
mikker:我猜他寫MATLAB的... 09/01 20:12
assyrian:MATLAB+1.... 09/01 20:50
kevin190:在Matlab裡~=就等同於C的!= 09/01 22:38
ousapas:取補數的符號 09/03 07:26
ousapas:http://goo.gl/8wrS4 09/03 07:26
COLDTURNIP:樓上,~ 是 unary operator,沒有 ~= 這種東西 09/03 23:26