user955249
user955249

Reputation:

What does rd stand for in rdstate and rdbuf?

There are two names in C++ standard I/O library: rdstate and rdbuf. I know "state" and "buf", but what is "rd"?

(PS: I believe I know how to use rdstate and rdbuf, don't teach me that).

Upvotes: 5

Views: 482

Answers (1)

user1610015
user1610015

Reputation: 6678

They stand for "read" I think, similar to how most people use "getXXX".

Upvotes: 3

Related Questions