| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1070 人关注过本帖
标题:关于操作系统线程的java题目
只看楼主 加入收藏
mynate
Rank: 1
等 级:新手上路
帖 子:60
专家分:7
注 册:2009-6-15
结帖率:42.86%
收藏
 问题点数:0 回复次数:0 
关于操作系统线程的java题目
The Fibonacci sequence is the series of numbers 0, 1, 1, 2, 3, 5, 8, .... Formally,
it can be expressed as:
f ib0 = 0
f ib1 = 1
f ibn = f ibn?1 + f ibn?2
Write a multithreaded program that generates the Fibonacci series using
either the Java, Pthreads, or Win32 thread library. This program should
work as follows: The user will enter on the command line the number
of Fibonacci numbers that the program is to generate. The program will
then create a separate thread that will generate the Fibonacci numbers,
placing the sequence in data that is shared by the threads (an array is
probably the most convenient data structure).When the thread finishes
execution, the parent thread will output the sequence generated by the
child thread.

写一个多线程程序可以生成的斐波纳契级数,使用Pthreads Java线程库,或Win32线程库。
这个程序应该满足如下:用户将输入命令行参数,生成斐波纳契数。这个程序将创建一个
独立的线程,使得产生斐波那契数,放置在数据序列的线程共享的(数组是最便捷的数据结
构)。当线程结束执行时,将父线程输出产生的子线程输出。
搜索更多相关主题的帖子: 线程 java 操作系统 
2009-10-25 12:39
快速回复:关于操作系统线程的java题目
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.058346 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved