-
用Visual C++编写一个完整的单片空间后方交会程序,通过对提供的试验数据进行计算,输出像片的外方位元素并评定精度...
用Visual C++编写一个完整的单片空间后方交会程序,通过对提供的试验数据进行计算,输出像片的外方位元素并评定精度
- 2022-03-15 19:22:35下载
- 积分:1
-
静态文本显示与椭圆的长文件名
Static text to display long filenames with ellipses
- 2022-02-13 22:51:45下载
- 积分:1
-
透明的static组件,基于MFC源代码
透明的static组件,基于MFC源代码-transparent static components, based on the MFC source code
- 2022-08-21 11:53:01下载
- 积分:1
-
这是一个用面向对象方法实现多项式四则运算的源程序,算法高效,用到很多数据结构。压缩包里面只是源程序文件,在vc中运行并由地定额的改动...
这是一个用面向对象方法实现多项式四则运算的源程序,算法高效,用到很多数据结构。压缩包里面只是源程序文件,在vc中运行并由地定额的改动-This is an object-oriented method polynomial four Operational source, efficient algorithm that uses a lot of data structure. Compressed only source files inside the vc to run fixed by the changes
- 2023-08-11 20:40:03下载
- 积分:1
-
Library management system papers, very good graduation design reference, we down...
图书管理系统论文,很好的毕业设计参考资料,大家下载-Library management system papers, very good graduation design reference, we download
- 2022-11-11 19:10:03下载
- 积分:1
-
详细的java示例代码,超级有用,格式正确已经调试了的
详细的java示例代码,超级有用,格式正确已经调试了的-detailed sample code, the super useful debugging format has the right of the
- 2022-06-03 12:09:41下载
- 积分:1
-
vb原代码,qing duoduo guanzhaoyixiaa
vb原代码,qing duoduo guanzhaoyixiaa -vb source, the Qing duoduo guanzhaoyixiaa
- 2022-02-03 15:31:06下载
- 积分:1
-
这是一个很不错的小体积的软件
这是一个很不错的小体积的软件-This is a very good small size of software
- 2022-02-27 00:19:12下载
- 积分:1
-
有背景颜色的静态控件
有背景颜色的静态控件-The static control which has background color
- 2022-05-27 14:56:08下载
- 积分:1
-
public class Server extends Thread { Client client int counter public Server(Cli...
public class Server extends Thread { Client client int counter public Server(Client _client) { this.client = _client this.counter = 0 } public void run() { while (counter < 10) { this.client.queue.addElement(new Integer(counter)) counter++ } throw new RuntimeException("counter >= 10") } public static void main(String[] args) { Client c = new Client() Server s = new Server(c) c.start() s.start() } } class Client extends Thread { Vector queue public Client() { this.queue = new Vector() } public void run() { while (true) { if (! (queue.size() == 0)) { processNextElement() } } } private void processNextElement() { Object next = queue.elementAt(0) queue.removeElementAt(0) System.out.println(next)-public class Server extends Thread { Client client int counter public Server(Client _client) { this.client = _client this.counter = 0 } public void run() { while (counter lt; 10) { this.client.queue.addElement(new Integer(counter)) counter++ } throw new RuntimeException("counter gt;= 10") } p
- 2022-02-21 05:44:37下载
- 积分:1