東方算程譚

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

記事カテゴリ

書庫

日記カテゴリ

相互参照(お祝いに代えて)

ネタ元(?) → 【その他】無事挙式を行うことができました

参照とかポインタとか、一方通行です。
コッチからアッチがみえてもアッチからコッチは見えない。

こんなの考えてました:

namespace Wankuma.Util {

  public class DualRef<I,U> {
    private I i_ = default(I); // 俺自身
    private DualRef<U,I> u_ref = null; // おまえ参照

    public DualRef(I i) { i_ = i; }
    public I i { get { return i_; } set { i_ = value; } } // 俺
    public U you { get { return u_ref.i_; } } // おまえ
    public void Connect(DualRef<U,I> u)
      { u_ref = u; u.u_ref = this; }
  }

}

/* おためし */

namespace Trial {

  class Husband {
    public void call()
      { System.Console.WriteLine("なあおまえ"); }
  }
  class Wife {
    public void reply()
      { System.Console.WriteLine("あいよおまいさん"); }
  }

  class Program {
    static void Main() {

      var adam = new Wankuma.Util.DualRef<Husband,Wife>(new Husband());
      var eve  = new Wankuma.Util.DualRef<Wife,Husband>(new Wife());
      adam.Connect(eve); // eveは俺の嫁 / adamはあたしの旦那様

      adam.i.call();    // なあおまえ
      adam.you.reply(); // あいよおまいさん 
    }
  }
}

...んー、なんか使いみちがありそうなのよね。
二つのForm間でのインタラクションとか。

投稿日時 : 2008年12月10日 10:58

コメントを追加

# re: 相互参照(お祝いに代えて) 2008/12/10 11:28 επιστημη

そんなわけで、いつまでも相互参照持ちつ持たれつお幸せに。

# re: 相互参照(お祝いに代えて) 2008/12/10 12:17

ありがとうございます!

しーぷらぷらーの(かなーり)端っこ者の私としてはεπιさんより祝辞コード頂けて光栄です!

これから夫婦仲良く(+マグさんも)頑張って参りますので、よろしくお願いいたします(m。_。)m

# re: 相互参照(お祝いに代えて) 2008/12/10 13:50 επιστημη

「祝いのコード」を書いたのは初めて♪

ときにコレ、弱参照使わんと握ったまま離さなく
なっちゃいそう...大抵の用途では問題ないとは思うけど。

# re: 相互参照(お祝いに代えて) 2008/12/10 13:56 インドリ

面白そう♪名前は【お祝いパターン】かな?
これ仲介オブジェクトを介して親族一同パターンにしたらもっと面白くなるかも♪

# VIhelSJziCEaVR 2011/12/22 22:15 http://www.discreetpharmacist.com/fre/index.asp

Of course, I understand a little about this post but will try cope with it!!...

# qmyeKtzfPmAbVm 2021/07/03 3:08 https://amzn.to/365xyVY

There as noticeably a bundle to know about this. I presume you made sure good factors in options also.

# ivermectin 6mg 2021/09/28 13:23 MarvinLic

ivermectin pills https://stromectolfive.com/# ivermectin 12 mg

# ivermectin 2mg 2021/11/01 7:58 DelbertBup

ivermectin generic https://stromectolivermectin19.com/# ivermectin cream 5%
ivermectin cost

# ivermectin 4 tablets price 2021/11/03 6:37 DelbertBup

ivermectin 50 mg https://stromectolivermectin19.com/# ivermectin over the counter canada
ivermectin 1mg

# ivermectin 1 cream generic 2021/11/04 0:38 DelbertBup

ivermectin australia http://stromectolivermectin19.com/# ivermectin 5
ivermectin for sale

# sildenafil 20 mg tablet 2021/12/08 9:56 JamesDat

https://viasild24.online/# how many sildenafil 20mg can i take

# careprost for sale 2021/12/11 17:53 Travislyday

http://bimatoprostrx.online/ bimatoprost

# bimatoprost ophthalmic solution careprost 2021/12/12 12:38 Travislyday

http://bimatoprostrx.com/ buy careprost in the usa free shipping

# buy bimatoprost 2021/12/13 8:25 Travislyday

http://plaquenils.com/ hydroxy-chloroquine

# careprost bimatoprost ophthalmic best price 2021/12/14 4:16 Travislyday

http://stromectols.com/ ivermectin australia

# bimatoprost generic best price 2021/12/16 12:35 Travislyday

http://plaquenils.online/ plaquenil weight loss

# ivermectin 8 mg 2021/12/17 9:47 Eliastib

ehwfok https://stromectolr.com ivermectin pill cost

# ivermectin lotion price 2021/12/18 12:10 Eliastib

cepfvc https://stromectolr.com cost of ivermectin cream

# doxylin https://doxycyline1st.com/
doxycycline mono 2022/02/26 8:27 Doxycycline

doxylin https://doxycyline1st.com/
doxycycline mono

# doxycycline 100mg capsules https://doxycyline1st.com/
doxy 2022/02/26 20:07 Doxycycline

doxycycline 100mg capsules https://doxycyline1st.com/
doxy

# pain medications without a prescription https://withoutprescription.store/
pet meds without vet prescription canada 2022/07/03 3:35 CanadaRx

pain medications without a prescription https://withoutprescription.store/
pet meds without vet prescription canada

# what is paxlovid https://paxlovid.best/
where can i get paxlovid 2022/09/08 7:42 Paxlovid

what is paxlovid https://paxlovid.best/
where can i get paxlovid

# how to cure ed https://ed-pills.xyz/
best ed treatment pills 2022/09/16 14:52 EdPills

how to cure ed https://ed-pills.xyz/
best ed treatment pills

# ed pills online https://ed-pills.xyz/
natural ed remedies 2022/09/17 2:57 EdPills

ed pills online https://ed-pills.xyz/
natural ed remedies

# prednisone daily use https://prednisone20mg.icu/ 2022/10/15 13:23 Prednisone

prednisone daily use https://prednisone20mg.icu/

# price of prednisone 5mg https://prednisone20mg.site/
prednisone pills for sale 2022/11/15 17:59 Prednisone

price of prednisone 5mg https://prednisone20mg.site/
prednisone pills for sale

# prednisone 2.5 mg cost https://prednisonepills.site/
prednisone 2 mg 2022/11/28 23:54 Prednisone

prednisone 2.5 mg cost https://prednisonepills.site/
prednisone 2 mg

# free datinsites chat https://datingsiteonline.site/
meet older women for free 2022/12/05 23:51 Tading

free datinsites chat https://datingsiteonline.site/
meet older women for free

# buy cytotec over the counter - https://cytotecsale.pro/# 2023/04/28 23:32 Cytotec

buy cytotec over the counter - https://cytotecsale.pro/#

# best erectile dysfunction pills https://edpill.pro/# - natural remedies for ed 2023/06/27 10:19 EdPills

best erectile dysfunction pills https://edpill.pro/# - natural remedies for ed

# valtrex medication cost https://valtrex.auction/ valtrex.com 2023/10/24 17:46 Valtrex

valtrex medication cost https://valtrex.auction/ valtrex.com

# doxycycline 100 mg https://doxycycline.forum/ doxycycline 50 mg 2023/11/25 9:09 Doxycycline

doxycycline 100 mg https://doxycycline.forum/ doxycycline 50 mg

# lana rhodes - https://lanarhoades.fun/ lana rhoades filmleri
2024/03/02 23:56 LanaRho

lana rhodes - https://lanarhoades.fun/ lana rhoades filmleri

# sweetie fox video https://sweetiefox.pro/ - sweetie fox video
2024/03/06 20:26 SwitieFox

sweetie fox video https://sweetiefox.pro/ - sweetie fox video

# buy cytotec pills https://cytotec.club/ buy cytotec 2024/04/28 2:37 Cytotec

buy cytotec pills https://cytotec.club/ buy cytotec

タイトル
名前
URL
コメント