Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does Scope Bound Resource Management(SBRM) mean?

Tags:

c++

I have been learning C++ these days and sometimes I heard about the term “Scope Bound Resource Management”. What does Scope Bound Resource Management mean?

like image 544
LiuHao Avatar asked Feb 11 '23 02:02

LiuHao


1 Answers

It is synonymous to RAII. Since Bjarne himself says RAII is not a good name for the concept, some one proposed to use SBRM instead.

like image 151
wilx Avatar answered Feb 12 '23 14:02

wilx