首页 > 试题广场 >

在调试程序时,可以把所有输出送到屏幕显示,而不必正式输出到打

[单选题]
在调试程序时,可以把所有输出送到屏幕显示,而不必正式输出到打印设备,其运用了().
  • Spooling技术
  • I/O重定向
  • 共享技术
  • 缓冲技术
应该选A吧?
发表于 2015-09-25 23:20:51 回复(2)
这个不是重定向么???
发表于 2015-06-27 17:33:55 回复(0)
转一个spooling的解释:
Acronym for simultaneous peripheral operations on-line, spooling refers to putting jobs in a buffer, a special area in memory or on a disk where a device can access them when it is ready. Spooling is useful because devices access dataat different rates. The buffer provides a waiting station where data can rest while the slower device catches up.
The most common spooling application is print spooling. In print spooling, documents are loaded into a buffer (usually an area on a disk), and then the printer pulls them off the buffer at its own rate. Because the documents are in a buffer where they can be accessed by the printer, you can perform other operations on the computer while the printing takes place in the background. Spooling also lets you place a number of print jobs on a queueinstead of waiting for each one to finish before specifying the next one.
发表于 2016-03-26 15:38:23 回复(0)
spooling技术是一种把独占设备改造成逻辑上共享的设备。 下面是一个实例。http://blog.sina.com.cn/s/blog_6a6eb42d0100laij.html 题目中,不属于把独占设备改造成共享设备的技术。根据排除法,只有B了。 那么什么是IO重定向呢? 是指将命令的执行结果重新导出到其他的设备或者文件。主要包括输入重定向和输出重定向。由这点看,确实选B
发表于 2016-02-27 15:32:49 回复(0)
I/O重定向,是指用于I/O操作的设备可以更换(重定向),而不必改变应用程序。比如调试程序,可将所有输出送屏幕显示,而程序调试完后,如需正式打印出来,需将I/O重定向中的数据结构---逻辑设备表中的显示终端改为打印机。
发表于 2016-07-12 15:06:43 回复(0)
spooling技术又称“假脱机”技术 :是用软件的方式实现脱机技术
脱机技术:脱离主机的控制进行的输入/输出 操作 
例子:共享打印机:打印机原本是一种“独占式”设备,使用spooling技术 可以变为逻辑上的共享设备,当多个用户进程提出打印请求时,系统会答应它们的请求,但不会真正把打印机分配给它们,而是把数据放到磁盘的输出井中,然后把该进程用户打印请求表挂到假脱机队列中,当打印机空闲时,才进行打印
发表于 2020-07-08 10:21:39 回复(0)
觉着是A,假脱机系统向用户提供共享打印机的概念是,对于每个用户而言,系统并非及时执行其程序输出数据,真实打印。而只是即时将数据输入到缓冲区,让用户感觉系统已经为他打印了。
发表于 2020-01-02 22:18:22 回复(0)
就是重定向啊,该输出到打印机的改成输出到标准输出
发表于 2022-03-21 21:34:47 回复(0)
I/O重定向,是指用于I/O操作的设备可以更换(重定向),而不必改变应用程序。比如调试程序,可将所有输出送屏幕显示,而程序调试完后,如需正式打印出来,需将I/O重定向中的数据结构---逻辑设备表中的显示终端改为打印机。
发表于 2017-04-22 19:47:25 回复(0)