7 ms·
Wouldn't the instance state here be "was constructed"? That is: you should always be able to call `Read` because the constructor opened the file, and you should
by atilaneves 2y ago
Wouldn't the instance state here be "was constructed"? That is: you should always be able to call `Read` because the constructor opened the file, and you shouldn't have to call `Close` anyway because the destructor did.
- tonyhb 2y agoI suppose it depends on the API. Some languages require grabbing a handle and calling open. Either way, theory is the same!