(String[] args)
| 81 | } |
| 82 | |
| 83 | public static void main(String[] args) { |
| 84 | int count = 1; |
| 85 | try { count = Integer.parseInt(args[0]); } catch (Exception e) { } |
| 86 | new prodcons(count).run(); |
| 87 | } |
| 88 | |
| 89 | private Producer m_producer; |
| 90 | private Consumer m_consumer; |