-

   rss_habrahabr_of_lokoman

 - e-mail

 

 -

 LiveInternet.ru:
: 16.03.2008
:
:
: 2

:


[ ] novtable

, 02 2019 . 12:26 +

Microsoft novtable __declspec .

. 0,6 1,2 DLL.

: , .

: .

:

struct __declspec(novtable) IDrawable
{
	virtual void Draw() const = 0;
};

: struct , ; class public . .

novtable , :

//   ,   IDrawable:

class Rectangle : public IDrawable
{
	virtual void Draw() const override
	{
	}

	int width;
	int height;
};


IDrawable* drawable = new Rectangle;
drawable->Draw(); //   Rectangle::Draw


https://habr.com/ru/post/442340/?utm_source=habrahabr&utm_medium=rss&utm_campaign=442340

:  

: [1] []
 

:
: 

: ( )

:

  URL