platform什么意思(platform中文翻譯,platform是什么意思,platform發(fā)音、用法及例句)
- 內容導航:
- 1、platform
- 2、java platform
1、platform
platform發(fā)音
英: 美:
platform中文意思翻譯
常見(jiàn)釋義:
n.平臺;月臺,站臺;壇;講臺;厚底松糕鞋
platform雙語(yǔ)使用場(chǎng)景
1、Still, it's really positive to see a book showing off the excellent capabilities of the Java platform.───不過(guò),看到一本炫耀Java平臺的卓越能力的書(shū)仍然是非常令人開(kāi)心的。
2、The platform began to produce oil in 1994.───這個(gè)鉆井平臺開(kāi)始產(chǎn)油。
3、This image displays the winding access road that leads up to the observing platform as well as the Observatory Control Room in the front.───圖中展示了蜿蜒而上的盤(pán)山公路,盡頭是觀(guān)測平臺,平臺最前方建筑是觀(guān)測控制室。
4、Nautical A platform enclosing the head of each mast of a sailing ship, to which the top mast rigging is attached.───帆船上包圍著(zhù)所有帆頭的平臺,頂桅索具就加結于其上。
5、But Elop said on Thursday that Nokia's final assessment was that "we would not be able to differentiate enough" on Android's platform.───但是,埃洛普周四表示,諾基亞最終得出的結論是,采用Android平臺,“將無(wú)法有效地保證諾基亞產(chǎn)品的獨特性”。
6、The hope was that development tool industry leaders would adopt Eclipse as the underlying platform for their best-of-breed tool offerings.───它的愿望是開(kāi)發(fā)工具行業(yè)領(lǐng)頭人能夠采用Eclipse作為最佳血統工具的底層平臺。
7、Because a MOM architecture decouples components and enables cross-platform communication between them, individual units can be heterogenous.───由于MOM架構對組件去耦且支持它們之間的跨平臺通信,單個(gè)原件可以是異構的。
8、The Edinburgh train is waiting at platform 4.───愛(ài)丁堡的火車(chē)在4號站臺等候。
9、On the platform, the guard blew his whistle.───站臺上,警衛吹響了他的哨子。
2、java platform
java platform是什么,讓我們一起了解一下?
paltform是一種虛擬的總線(xiàn),用于管理外設資源、內存資源、中斷資源,在硬件上有USB-BUS總線(xiàn),PCI-BUS總線(xiàn),這是在物理設備上實(shí)際存在的總線(xiàn)。platform的一個(gè)優(yōu)點(diǎn)就是將驅動(dòng)和設備分開(kāi),提高驅動(dòng)的移植性。
platform的靈魂是:device(設備)driver(驅動(dòng))platform_bus(platform總線(xiàn)),其特點(diǎn)是設備,驅動(dòng)分層動(dòng)態(tài)的管理和加載,其中platform_bus是一個(gè)虛擬的總線(xiàn)。
drvier和device匹配的方法有3種:
1、當一個(gè)設備注冊的時(shí)候,他會(huì )在總線(xiàn)上尋找匹配的driver,platform device一般在系統啟動(dòng)很早的時(shí)候就注冊了。
2、當一個(gè)驅動(dòng)注冊[platform_driver_register()]的時(shí)候,他會(huì )遍歷所有總線(xiàn)上的設備來(lái)尋找匹配,在啟動(dòng)的過(guò)程驅動(dòng)的注冊一般比較晚,或者在模塊載入的時(shí)候。
3、當一個(gè)驅動(dòng)注冊[platform_driver_probe()]的時(shí)候, 功能上和使用platform_driver_register()是一樣的,唯一的區別是它不能被以后其他的device probe了,也就是說(shuō)這個(gè)driver只能和 一個(gè)device綁定。
如何定義一個(gè)driver?
static struct platform_driver test_platform_driver = { .probe = dev_test_probe, .remove = dev_test_remove, .suspend = dev_test_suspend, .resume = dev_test_resume, .driver = { .owner = THIS_MODULE, .name = "cx2837_test", }, };
如何定義一個(gè)device(設備)? static struct platform_device dev_fb0 = { .name = "cx2837_test", .id = 1, };
版權聲明: 本站僅提供信息存儲空間服務(wù),旨在傳遞更多信息,不擁有所有權,不承擔相關(guān)法律責任,不代表本網(wǎng)贊同其觀(guān)點(diǎn)和對其真實(shí)性負責。如因作品內容、版權和其它問(wèn)題需要同本網(wǎng)聯(lián)系的,請發(fā)送郵件至 舉報,一經(jīng)查實(shí),本站將立刻刪除。