ChinaUnix.net
相关文章推荐:

IntelR 82801FBM LPC Interface Controller 2641

折腾了很久,还有有问题 debian sid, 2.6.10 on Dell Precision M20 Mobile Workstation IDE控制器为82801fbm SATA controller, 使用SATA内核支持后,primary ideo识别为sda,能正常使用,速度很快,primary ide1识别为hdc,速度很慢,不能使用hdparm -d1 /dev/hdc的方式来打开DMA, 因此使用DVD-ROM或Modular Bay HDD的时候速度很慢, 我也将内核里的sata, scsi, atapi等参数调了很多次也不行 当将primary ide0 与primary ide1 Modular...

by aquino - Linux论坛 - 2005-10-04 00:58:47 阅读(601) 回复(0)

相关讨论

我在已安装的硬件上发现除了USB ROOT HUB 以外还看到有intel(r) 82801 BA/BAM USB Universal controller-2442 ,他起什么作用?

by 存储小白 - 服务器及硬件技术 - 2005-11-30 15:28:01 阅读(1073) 回复(0)

java interface的一个经典实例 import java.io.*; interface CAR { void start(); void stop(); } class SmallCar implements CAR { public void start() { System.out.println("smallcar start..."); } public void stop() { System.out.println("smallcar stop!"); } } class BigCar implements CAR { public void start() { System.out.println("bigcar sta...

by 一水思南 - Java文档中心 - 2007-09-29 16:28:10 阅读(414) 回复(0)

================================================ PHP5里的接口(interface)到底有什么用? 看了些资料,依然觉得很迷糊,php5的接口只是提供了一些空的function而已,实际的方法依然在各个class里面,并且要使用这些function的时候依然要先实例化这些class,那么,接口,到底起个什么作用?? =====================================...

by je1024 - PHP - 2007-09-20 12:19:23 阅读(1724) 回复(4)

interface can have three kinds of members: 1. field 2. method 3. nesting(嵌套)class or interface In the interface, the field is always public, static and final. But generally we can omit(省略)them. Them must have initalize values, because final field can not be null. The methods in interface are always abstract and public, they can not be native, synchronized or strctfp. They can't be static too...

by ganqing1234 - Java文档中心 - 2007-04-20 14:28:56 阅读(474) 回复(0)

On a Sun Enterprise 250 install system, and its been having memory failures problem See below for more details: ......DVMA read transaction ......pcipsy: syndrome bits e9 ......pdipsy: WARNING: correctable error from pci0 (upa mid 1f) during ................ ................ 谢谢!!!

by 淹死的鱼 - Solaris - 2004-01-06 18:48:16 阅读(751) 回复(12)

关键词: java interface 接口 主板上的PCI插槽就是现实中的接口 你可你把声卡,显卡,网卡都插在PCI插槽上,而不用担心那个插槽是专门插哪个的 原因是做主板的厂家和做各种卡的厂家都遵守了统一的规定 包括尺寸,排线等等 但是各种卡的内部结构是一样的么?答案必然是否定的! 我们来模拟一下: interface PCI { void start(); void st...

by huanghaojie - Java文档中心 - 2007-11-29 20:53:29 阅读(496) 回复(0)

As you've already learned, objects define their interaction with the outside world through the methods that they expose. Methods form the object's interface with the outside world; the buttons on the front of your television set, for example, are the interface between you and the electrical wiring on the other side of its plastic casing. You press the "power" button to turn the television on and...

by jim153 - Java文档中心 - 2007-06-18 16:16:10 阅读(293) 回复(0)

本文出自编程爱好者网站 作者:deadpanda 发表时间:2006-7-4 15:06:00   抽象方法是必须实现的方法。就象动物都要呼吸。但是鱼用鳃呼吸,猪用肺呼吸。   动物类要有呼吸方法。怎么呼吸就是子类的事了。   现在有很多讨论和建议提倡用interface代替abstract类,两者从理论上可以做一般性的混用,但是在实际应用中,他们还是有一定区别的。抽象类一般作为公共的父类为子类的扩展提供基础,这里的扩展包括了属性上和行...

by yzgname - Java文档中心 - 2006-08-23 15:03:32 阅读(311) 回复(0)

接口的定义,如: interface interfaceExample1 { int i=4; int k=5; void func1(); int func2(int x); } 接口的作用:接口中的所有数据成员都是静态常量,尽管可以不用这2个关键子修饰,但必须给常量赋初值。接口中的方法只有定义没有实现细节。它只负责提供一个框架。 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/21219/showart_134219.html

by liangjie2213 - Java文档中心 - 2006-06-29 12:28:46 阅读(370) 回复(0)