You can use some HTML elements, such as <b>, <i>, <a>, also, some characters need to be entity referenced such as <, > and & Your comment may need to be confirmed by blog author. Your comment will be published under GFDL 1.3 or later license with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
// つまり、static_cast(e) ;が可能かどうかと、T t(e) ;が可能かどうかは、全く同じ
ReplyDeleteちょっと考えただけでも
void* const p = new double();
static_cast(p); // valid
とかある件について
<int*> がタグ扱いされて無視された….
ReplyDeletestatic_cast<int*>(p) です
直接関係あるかは微妙ですが
ReplyDeleteauto y = T(x);
は
auto y = reinterpret_cast<T>(x);
と殆ど同じで危険,というのは見落としやすい点ですね.