[ jgundam.tumblr.com ] Someone Code Review me plz. #!/usr/bin/env ruby require 'thread' require 'monitor' class Philosopher @@MAX_WAITING_CYCLE = 500 attr_accessor :name, :finished_dinner, :times_to_eat, :times_eaten, :left_chopstick, :right_chopstick, :thinking_cycle def initialize(number, times_to_eat) @name = "Philosopher " + number @times_to_eat = times_to_eat @times_eaten = 0 @finis...
Etiquetas: Sin etiquetas
0 puntos - Ver comentarios
Ir a anotación original