東方算程譚

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

記事カテゴリ

書庫

日記カテゴリ

ほのぼの無間地獄

インスパイア元 → 満面の笑み

class Goat {
  private string name_;
  public string name() { return name_; }

  public Goat(string name) { name_ = name; }
  public void SendMail(Goat to, string mail) {
    to.GotMail(this,mail);
  }

  private void GotMail(Goat from, string mail) {
    System.Console.WriteLine("{0}からおてがみついた", from.name());
    if ( EatMail(mail) ) {
      string reply = MakeReply();
      System.Console.WriteLine("「{0}」\n", reply);
      SendMail(from,reply);
    }
  }

  private bool EatMail(string mail) {
    System.Console.WriteLine("{0}たらよまずにたべた", this.name());
    return true;
  }
  private string MakeReply() {
    System.Console.WriteLine("しぃかたがないのでおぉてがみかぁいた");
    return "さっきのてがみのごようじなあに?";
  }

  public static void Main() {
    Goat white = new Goat("白ヤギさん");
    Goat black = new Goat("黒ヤギさん");
    white.SendMail(black, "ういーっす");
  }

}

// だれかとめてあげてー

投稿日時 : 2007年11月6日 12:22

コメントを追加

# ヤギさん、おなかいっぱい♪ 2007/11/06 13:20 とりこらぼ。

ヤギさん、おなかいっぱい♪

# re: ほのぼの無間地獄 2007/11/07 3:50 やまだ

> // だれかとめてあげてー

では。

class Man {

private bool EatGoat(Goat goat) {
goat.kill(); // んなメソッドはない。
System.Console.WriteLine("{0}たらたべーられーた", goat.name());
return true;
}

}

ほのぼのから一気に?

# re: ほのぼの無間地獄 2007/11/07 8:25 επιστημη

んー...return true の前に goat.Dispose() を忘れてますねぃ(ひひひ

# re: ほのぼの無間地獄 2007/11/08 1:45 やまだ

いや、食べる前にお掃除しちゃったらもったいないし(とか言ってみる)。

あ、EatMail メソッドなんですが、if 文の使われ方からすると、
if (! ReadMail(mail) ) {
とメソッド名を変えて、デフォルトのリターン値を false にした方がしっくりくるんじゃないかと思うんですが、どんなもんでしょ?

# re: ほのぼの無間地獄 2007/11/08 9:26 επιστημη

んー...ヤギさんの脳内イベントループには低位のイベント:「紙もらった」が届き、
より高位のイベント:「お手紙ついた」にマップされる途中でフックされたのでしょう。
とすればメソッド名は EatMail ではなく EatFood が妥当かも。
interface I食える;
class 紙 : I食える;
class 手紙 : 紙;
だったのですねヤギさん的には。

# IptIckOyba 2021/07/03 3:18 https://amzn.to/365xyVY

Very neat article.Much thanks again. Really Great.

# iEDzmPVCczkxB 2021/07/03 4:49 https://www.blogger.com/profile/060647091882378654

Major thankies for the blog article.Thanks Again. Great.

# Illikebuisse bfaty 2021/07/03 16:54 www.pharmaceptica.com

erectile prescription pills https://pharmaceptica.com/

# re: ???????? 2021/07/06 2:42 hydroxyclorine

chloroguine https://chloroquineorigin.com/# lupus usmle

# re: ???????? 2021/07/23 9:49 does hydroxychloroquine cause heart problems

chloroquine cvs https://chloroquineorigin.com/# what is hydrochloroquine

# prednisone 30 mg daily https://prednisonesnw.com/#
prednisone 20 mg purchase 2021/11/13 9:45 Prednisone

prednisone 30 mg daily https://prednisonesnw.com/#
prednisone 20 mg purchase

# does sildenafil 20 mg work https://viasild24.online/
2021/12/07 19:29 Nyusjdh

does sildenafil 20 mg work https://viasild24.online/

# ivermectin generic cream http://stromectolabc.com/
ivermectin syrup 2022/02/08 2:36 Busjdhj

ivermectin generic cream http://stromectolabc.com/
ivermectin syrup

# ivermectin 6 http://stromectolabc.com/
stromectol canada 2022/02/08 9:23 Busjdhj

ivermectin 6 http://stromectolabc.com/
stromectol canada

# wveleqywvmmv 2022/05/09 4:12 ngkhmb

does hydroxychloroquine cause heart problems https://keys-chloroquinehydro.com/

# finasteride for sale https://finasteridemen.com/
2022/05/11 23:54 Finasteride

finasteride for sale https://finasteridemen.com/

# dtdsneyowspa 2022/05/29 20:33 upcfuexf

what is the antibiotic erythromycin used to treat http://erythromycinn.com/#

# new ed treatments https://erectionpills.best/
impotence pills 2022/06/28 19:39 ErectionPills

new ed treatments https://erectionpills.best/
impotence pills

# hinge dating https://datingtopreview.com/
dating chat 2022/10/17 20:30 Dating

hinge dating https://datingtopreview.com/
dating chat

# dating online sites https://topdatingsites.fun/
video dating 2022/11/15 0:18 DatingTop

dating online sites https://topdatingsites.fun/
video dating

# dating game https://datingsiteonline.site/
serious free dating sites 2022/12/05 23:40 Tading

dating game https://datingsiteonline.site/
serious free dating sites

# canadian pharmaceuticals online https://noprescriptioncanada.com/
mexican border pharmacies shipping to usa 2022/12/13 20:47 CanadaPh

canadian pharmaceuticals online https://noprescriptioncanada.com/
mexican border pharmacies shipping to usa

# hydroxychloroquine 200 mg 2022/12/28 5:46 MorrisReaks

https://www.hydroxychloroquinex.com/ order plaquenil generic alberta

# our time dating https://datingonline1st.com/
european singles dating sites 2023/01/17 22:24 Dating

our time dating https://datingonline1st.com/
european singles dating sites

# Drug information. Read here.
https://edonlinefast.com
Read now. Get information now. 2023/02/18 10:28 EdOnline

Drug information. Read here.
https://edonlinefast.com
Read now. Get information now.

# earch our drug database. Medicament prescribing information.
https://canadianfast.com/
Actual trends of drug. Read information now. 2023/02/20 0:25 CanadaBest

earch our drug database. Medicament prescribing information.
https://canadianfast.com/
Actual trends of drug. Read information now.

# buy cytotec online fast delivery - https://cytotecsale.pro/# 2023/04/28 23:23 Cytotec

buy cytotec online fast delivery - https://cytotecsale.pro/#

# top canadian pharmacies https://pillswithoutprescription.pro/# 2023/05/16 4:37 PillsPro

top canadian pharmacies https://pillswithoutprescription.pro/#

# ed treatment review https://edpill.pro/# - ed remedies 2023/06/27 10:11 EdPills

ed treatment review https://edpill.pro/# - ed remedies

# pills for erection https://edpillsotc.store/# - cure ed 2023/10/07 21:11 EdPills

pills for erection https://edpillsotc.store/# - cure ed

# buy generic valtrex https://valtrex.auction/ valtrex generic otc 2023/10/24 17:39 Valtrex

buy generic valtrex https://valtrex.auction/ valtrex generic otc

# paxlovid buy https://paxlovid.bid/ paxlovid for sale 2023/10/25 18:21 Paxlovid

paxlovid buy https://paxlovid.bid/ paxlovid for sale

# comprare farmaci online con ricetta https://farmaciait.pro/ acquistare farmaci senza ricetta 2023/12/04 7:02 Farmacia

comprare farmaci online con ricetta https://farmaciait.pro/ acquistare farmaci senza ricetta

# ed pills for sale https://edpills.tech/# best over the counter ed pills 2023/12/23 4:37 EdPills

ed pills for sale https://edpills.tech/# best over the counter ed pills

# prednisone brand name canada https://prednisone.bid/ prednisone best prices 2023/12/27 6:50 Prednisone

prednisone brand name canada https://prednisone.bid/ prednisone best prices

タイトル
名前
URL
コメント