東方算程譚

Oriental Code Talk ── επιστημηが与太をこく、弾幕とは無縁のシロモノ。

目次

Blog 利用状況

ニュース

著作とお薦めの品々は

著作とお薦めの品々は
東方熱帯林へ。

あわせて読みたい

わんくま

  1. 東京勉強会#2
    C++/CLI カクテル・レシピ
  2. 東京勉強会#3
    template vs. generics
  3. 大阪勉強会#6
    C++むかしばなし
  4. 東京勉強会#7
    C++むかしばなし
  5. 東京勉強会#8
    STL/CLRによるGeneric Programming
  6. TechEd 2007 @YOKOHAMA
    C++・C++/CLI・C# 適材適所
  7. 東京勉強会#14
    Making of BOF
  8. 東京勉強会#15
    状態遷移
  9. 名古屋勉強会#2
    WinUnit - お気楽お手軽UnitTest

CodeZine

  1. Cで実現する「ぷちオブジェクト指向」
  2. CUnitによるテスト駆動開発
  3. SQLiteで組み込みDB体験(2007年版)
  4. C++/CLIによるCライブラリの.NET化
  5. C# 1.1からC# 3.0まで~言語仕様の進化
  6. BoostでC++0xのライブラリ「TR1」を先取りしよう (1)
  7. BoostでC++0xのライブラリ「TR1」を先取りしよう (2)
  8. BoostでC++0xのライブラリ「TR1」を先取りしよう (3)
  9. BoostでC++0xのライブラリ「TR1」を先取りしよう (4)
  10. BoostでC++0xのライブラリ「TR1」を先取りしよう (5)
  11. C/C++に対応した、もうひとつのUnitTestFramework ─ WinUnit
  12. SQLiteで"おこづかいちょう"
  13. STL/CLRツアーガイド
  14. マージ・ソート : 巨大データのソート法
  15. ヒープソートのアルゴリズム
  16. C++0xの新機能「ラムダ式」を次期Visual Studioでいち早く試す
  17. .NETでマンデルブロ集合を描く
  18. .NETでマンデルブロ集合を描く(後日談)
  19. C++/CLI : とある文字列の相互変換(コンバージョン)
  20. インテルTBBによる選択ソートの高速化
  21. インテルTBB3.0 によるパイプライン処理
  22. Visual C++ 2010に追加されたSTLアルゴリズム
  23. Visual C++ 2010に追加されたSTLコンテナ「forward_list」
  24. shared_ptrによるObserverパターンの実装
  25. .NETでマンデルブロ集合を描く(番外編) ── OpenCLで超並列コンピューティング
  26. StateパターンでCSVを読む
  27. 状態遷移表からStateパターンを自動生成する
  28. 「ソートも、サーチも、あるんだよ」~標準C++ライブラリにみるアルゴリズムの面白さ
  29. インテルTBBの同期メカニズム
  30. なぜsetを使っちゃいけないの?
  31. WPFアプリケーションで腕試し ~C++でもWPFアプリを
  32. C++11 : スレッド・ライブラリひとめぐり
  33. Google製のC++ Unit Test Framework「Google Test」を使ってみる
  34. メールでデータベースを更新するココロミ
  35. Visitorパターンで遊んでみたよ
  36. Collection 2題:「WPFにバインドできる辞書」と「重複を許す検索set」
  37. Visual C++ 2012:stateless-lambdaとSQLiteのぷち拡張
  38. 「Visual C++ Compiler November 2012 CTP」で追加された6つの新機能

@IT

  1. Vista時代のVisual C++の流儀(前編)Vista到来。既存C/C++資産の.NET化を始めよう!
  2. Vista時代のVisual C++の流儀(中編)MFCから.NETへの実践的移行計画
  3. Vista時代のVisual C++の流儀(後編) STL/CLRによるDocument/Viewアーキテクチャ
  4. C++開発者のための単体テスト入門 第1回 C++開発者の皆さん。テスト、ちゃんとしていますか?
  5. C++開発者のための単体テスト入門 第2回 C++アプリケーションの効率的なテスト手法(CppUnit編)
  6. C++開発者のための単体テスト入門 第3回 C++アプリケーションの効率的なテスト手法(NUnit編)

AWARDS


Microsoft MVP
for Visual Developer - Visual C++


Wankuma MVP
for いぢわる C++


Nyantora MVP
for こくまろ中国茶

Xbox

Links

記事カテゴリ

書庫

日記カテゴリ

新潟。

昨日のわんくま同盟東京勉強会#71、いっぱいのお運びありがとやんした。

で、「新潟」なんだが。
おハナシ聴いて思い出した件:

8年ほど前、C++標準員会に「C++にプロパティを導入せぇへん?」
てゆープロポーザル:N1615が投げられてます。
こいつで新潟を実現すると:

template<typename T, class Owner, typename T (Owner::*getter)()>
class niigata {
public:
  void operator()(Owner* o) { owner_ = o; }
  T get() const { return (owner_->*getter)(); }
  T operator()() const { return get(); }
  operator T() const { return get(); }
private:
  Owner* owner_;
};

// おためし

#include <iostream>
#include <string>

using namespace std;

class Nyan {
private:
  string get_name() { return name_; }
  string name_;
public:
  Nyan(const string& n) : name_(n) { Name(this); }
  niigata<string,Nyan,&Nyan::get_name> Name; // ←ここで新潟
};

int main() {
  Nyan c0("シュウたん");
  Nyan c1("みずき");
  string n0 = c0.Name;
  cout << n0 << " & " << c1.Name() << endl; // ok: 読めるけど
  // c0.Name = "マグさん"; // error: 書けない
}
...できてるー♪

投稿日時 : 2012年5月20日 11:43

コメントを追加

# generic prednisone 10mg https://prednisonesnw.com/#
prednisone 12 tablets price 2021/11/13 9:44 Prednisone

generic prednisone 10mg https://prednisonesnw.com/#
prednisone 12 tablets price

# clomid uk https://clomidt.com
clomiphene generic 2022/01/03 19:24 Clomid

clomid uk https://clomidt.com
clomiphene generic

# buy doxycycline hyclate 100mg without a rx https://doxycyline1st.com/
buy doxycycline 100mg 2022/02/26 17:53 Jusidkid

buy doxycycline hyclate 100mg without a rx https://doxycyline1st.com/
buy doxycycline 100mg

# online canadian pharmacies https://noprescriptioncanada.com/
certified online canadian pharmacies 2022/12/16 23:46 NoPrescript

online canadian pharmacies https://noprescriptioncanada.com/
certified online canadian pharmacies

# What side effects can this medication cause? Get information now.
https://canadianfast.com/
Everything information about medication. Everything what you want to know about pills. 2023/02/20 0:25 CanadaBest

What side effects can this medication cause? Get information now.
https://canadianfast.com/
Everything information about medication. Everything what you want to know about pills.

# doors2.txt;1 2023/03/14 15:29 LGlnvSRmt

doors2.txt;1

# online prescriptions canada without https://pillswithoutprescription.pro/# 2023/05/15 5:19 PillsPresc

online prescriptions canada without https://pillswithoutprescription.pro/#

# paxlovid price https://paxlovid.life/# paxlovid cost without insurance 2023/07/26 2:00 Paxlovid

paxlovid price https://paxlovid.life/# paxlovid cost without insurance

# buy prednisone online india https://prednisonepharm.store/ 20 mg of prednisone 2024/01/20 18:04 Prednisone

buy prednisone online india https://prednisonepharm.store/ 20 mg of prednisone

タイトル
名前
URL
コメント