ホーム » 2018 » 11月

月別アーカイブ: 11月 2018

2018年11月
 123
45678910
11121314151617
18192021222324
252627282930  

人気の投稿とページ

カテゴリー

最近の投稿

アーカイブ

ブログ統計情報

  • 120,703 アクセス




template の複数の型の順番

先日作成した template .   template <class V3, class VT> V3 ToV3 (const VT& vt,const long type) 型の順番で,戻り値の型 […]

Continue Reading →

::ToV3<Vd3,Vd2>(v2,to_x0y) で C2784

次の様な template の利用で,C2784 エラー. Vd2 v2(1,2) ; Vd3 v3 = ::ToV3<Vd3,Vd2>(v2,to_x0y) ; \\DevS\...\tovxx.hxx(1 […]

Continue Reading →

template で複数の型を指定

template で複数の型を指定する場合は,カンマで区切って指定すれば良い. template <class V2, class V3> V2 ToV2 (const V3& v3,const lo […]

Continue Reading →

WEB SQL Injection Attempt -87

ルータ RT-AC86U の AiProtection ではじかれているが,今日は Web サーバへの攻撃が多い? 2018-11-22 18:06:23  External Attacks  129.121.176.2 […]

Continue Reading →

ファイルの検索

あるフォルダ内のファイルを列挙するコード  MFC v_tstring EnumFiles_MFC (c_tstring& path,const bool skipDot=true) { v_tstring foundF […]

Continue Reading →

Chrome の「Google で画像を検索」

Chrome でちょっと面白い機能を見つけたのでメモ. 画像を右クリックして「Google で画像を検索」. 類似画像が表示される. もとの画像によっては,かなり近い画像が見つかることもある. Is this 投稿 us […]

Continue Reading →

vector<Xxxx<T>> の利用でのエラー

template <class T> Extent2<T> E2_GetExtent (const std::vector<VLine2<T>>& lins) // […]

Continue Reading →