Ответ
 
Опции вопроса Поиск в этом вопросе Опции просмотра
  #1  
Старый 30.09.2011, 18:20
Аватар для Guest
Guest
Вопрос
Сообщений: n/a
По умолчанию

Официальное описание __attribute__ ((pure))ЦитироватьMany functions have no effects except the return value and their return value depends only on the parameters and/or global variables. Such a function can be subject to common subexpression elimination and loop optimization just as an arithmetic operator would be. These functions should be declared with the attribute pure. For example, int square (int) __attribute__ ((pure)); says that the hypothetical function square is safe to call fewer times than the program says.Some of common examples of pure functions are strlen or memcmp. Interesting non-pure functions are functions with infinite loops or those depending on volatile memory or other system resource, that may change between two consecutive calls (such as feof in a multithreading environment). Какая разница между функцией с атрибутом "pure" и const функцией?
Ответить с цитированием
Ответ



Похожие вопросы
Тема Автор Раздел Ответов Последний вопрос или ответ
Каково происхождение слова "глаголить" и его отличие от "выражать"? Guest Новый архив 5 0 16.03.2012 11:51
как позвать из const методa non-const? Guest Продолжение старого архива 0 30.09.2011 17:45



© www.otvetnemail.ru - Форум вопросов и ответов.