C & C++/C++

[C++] C++ 에도 annotation이 존재할까?

Razelo 2022. 1. 3. 21:46

요즘 springboot를 사용하면서 프로젝트를 진행중이라서 잔뜩 annotation을 사용중이었다. 그런데 문뜩 c++에도 annotation을 쓰는가? 에 대한 궁금증이 번졌다. 그래서 검색해보았는데 이렇다 할 annotation이라는건 없었고 그 대신에 generalized attributes 라는 기능을 쓴다고 한다. 아래 스택오버플로우의 답변들을 보면 뭘 말하는지 알 수 있다.  

 

https://www.codesynthesis.com/~boris/blog/2012/04/18/cxx11-generalized-attributes/

 

C++11 generalized attributes

Generalized attributes are a new C++11 core language feature that is not much talked about. The reason for this is because attributes are not easily extendable by the user. In their current form, one cannot define custom attributes without also having to m

www.codesynthesis.com

 

그리고 블로그를 추천 받았는데 아래 블로그이다. 시간날때 정독하면 c++ 에서 무슨 느낌으로 사용하는지 대충은 알 수는 있을 것 같다. 

 

https://www.codesynthesis.com/~boris/blog/2012/04/18/cxx11-generalized-attributes/

 

C++11 generalized attributes

Generalized attributes are a new C++11 core language feature that is not much talked about. The reason for this is because attributes are not easily extendable by the user. In their current form, one cannot define custom attributes without also having to m

www.codesynthesis.com

 

반응형