'템플릿'에 해당되는 글 2건

  1. 2014.01.29 Visual Studio 템플릿 만들기
  2. 2012.06.21 C++ 템플릿을 friend 선언하는 방법
컴퓨터/프로그래밍2014. 1. 29. 11:04

 

Creating Visual Studio Templates
  : http://msdn.microsoft.com/en-us/library/ms247121.aspx

 

Customizing Project and Item Templates
  : http://msdn.microsoft.com/en-us/library/ms247119.aspx

 

How to: Locate and Organize Project and Item Templates
  : http://msdn.microsoft.com/en-us/library/y3kkate1.aspx

 

Template Parameters
  : http://msdn.microsoft.com/en-us/library/eehb4faa.aspx

 

Posted by jungtae17
컴퓨터/프로그래밍2012. 6. 21. 14:48
template< typename _Type >
class _TEMPLATE
{
	...

}; // template _TEMPLATE

C++ 에서 위와 같은 템플릿을 friend 로 선언하고 싶다면 아래와 같이 하면 됩니다.
class _CLASS
{
	...

	template< typename _Type > friend class _TEMPLATE;	// <<-- 프렌드 선언

}; // class _CLASS

'컴퓨터 > 프로그래밍' 카테고리의 다른 글

PHP 정보 보기  (0) 2012.12.05
namespace alias (별칭)  (0) 2012.10.11
개발 툴(프로그래밍)에서 유용한 단축키  (0) 2012.04.04
git (SCM)  (0) 2012.03.29
SQL 에서 순위를 할당하는 함수  (0) 2012.03.03
Posted by jungtae17