<p>我们提供一个类:</p> <pre> class FooBar { public void foo() { for (int i = 0; i < n; i++) { print("foo"); } } public void bar() { for (int i = 0; i < n; i++) { print("bar"); } } } </pre> <p>两个不同的线程将会共用一个 <code>FooBar</code> 实例。其中一个线程将会调用 <code>foo()</code> 方法,另一个线程将会调用 <code>bar()</code> 方法。</p> <p>请设计修改程序,以确保 "foobar" 被输出 n 次。</p> <p> </p> <p><strong>示例 1:</strong></p> <pre> <strong>输入:</strong> n = 1 <strong>输出:</strong> "foobar" <strong>解释:</strong> 这里有两个线程被异步启动。其中一个调用 foo() 方法, 另一个调用 bar() 方法,"foobar" 将被输出一次。 </pre> <p><strong>示例 2:</strong></p> <pre> <strong>输入:</strong> n = 2 <strong>输出:</strong> "foobarfoobar" <strong>解释:</strong> "foobar" 将被输出两次。 </pre>