タグ

ブックマーク / oopcl-review.blogspot.com (1)

  • Object-Oriented Programming in COMMON LISP を読む

    3.1 OVERVIEW OF LOCKING 用語と概念の整理。 locks, seize, release, busy, free, owner。 Simple lock, Null lock。 3.2 DEFINING THE KINDS OF OBJECTS-CLASSES クラスの設計。lock, simple-lock, null-lock。 用語の整理。built on, is a drect superclass of, is a direct subclass of, basic class basic classを導入するメリット。 (typep obj 'lock)で、チェックできる。 名前付け、を統一特性として全てのロックに付与することができる。 デフォルトの振舞を定義できる。 lockクラス、simple-lockクラス、null-lockクラスを定義。 :doc

    goinger
    goinger 2009/09/09
  • 1