App下載

詞條

大約有 6,000 項符合查詢結果 ,庫內(nèi)數(shù)據(jù)總量為 78,250 項。(搜索耗時:0.0056秒)

2931.block

原型:extern void block(int left, int top, int right, int bottom, int mode); 用法:#include <system.h> 功能:在屏幕上畫一矩形并填充。 說明:(left,top)指定左上角坐標,(right,bottom)指定右下角坐標。 mode決定畫圖方...

http://www.o2fo.com/cyykhsscsc/fgp1c3.html

2932.cursor

原型:extern void cursor(int mode); 用法:#include <system.h> 功能:設定光標形態(tài) 說明:mode值含義如下: 0x00:塊狀光標(默認) 0x80:下劃線光標 其它值無意義 舉例: // cursor.c #inclu...

http://www.o2fo.com/cyykhsscsc/sjr1c4.html

2933.delay

原型:extern void delay(unsigned int msec); 用法:#include <system.h> 功能:短暫延時 說明:延時msec*4毫秒 舉例: // delay.c #include <system.h> main() { int c; clrscr(); printf("\nHello, world...

http://www.o2fo.com/cyykhsscsc/lgy1c5.html

2934.sleep

原型:extern void sleep(unsigned int sec); 用法:#include <system.h> 功能:短暫延時 說明:延時sec秒 舉例: // sleep.c #include <system.h> main() { int c; clrscr(); printf("\nHello, world!"); ...

http://www.o2fo.com/cyykhsscsc/obk1c6.html

2935.textmode

原型:extern void textmode(int mode); 用法:#include <system.h> 功能:設定屏幕模式 說明:請參見UpdateLCD中關于mode的含義。 textmode會影響屏幕上已有內(nèi)容的顯示。 舉例: // textmode.c #include <system...

http://www.o2fo.com/cyykhsscsc/zln1c7.html

2936.rectangle

原型:extern void rectangle(int left, int top, int right, int bottom, int mode); 用法:#include <system.h> 功能:在屏幕上畫一矩形。 說明:(left,top)指定左上角坐標,(right,bottom)指定右下角坐標。 mode決定畫圖方式,...

http://www.o2fo.com/cyykhsscsc/qig1cj.html

2937.C++ 我們自己的find版本

...位置的索引。這是該函數(shù)的一個實現(xiàn): int find (apstring s, char c, int i) { while (i<s.length()) { if (s[i] == c) return i; i = i + 1; } return -1; } 不同于在apstring變量上調(diào)用find函數(shù),如find的第一個版本那樣,我們必須將apstring變量作為該find函數(shù)...

http://www.o2fo.com/hbvlgw/byscaozt.html

2938.標示注釋

理想上,任何?CSS 規(guī)則集之前都應該使用 C 風格注釋來解釋 CSS 塊的核心。這個注釋也要記錄對規(guī)則集特定部分編號的解釋。比如: /** * Helper class to truncate and add ellipsis to a string too long for it to fit * on a single line. * 1\. Prevent content ...

http://www.o2fo.com/lsguh2/ib6zyozt.html

2939.參數(shù)列表

...或 map,它會自動解析為一系列的參數(shù)。 @mixin dummy($a, $b, $c) { // ... } // Yep @include dummy(true, 42, 'kittens'); // Yep but nope $params: (true, 42, 'kittens'); $value: dummy(nth($params, 1), nth($params, 2), nth($params, 3)); // Yep $params: (true, 42, 'kittens'); @include dummy...

http://www.o2fo.com/lsguh2/txw3hozt.html

2940.height([val|fn])

...高度值(px)。 在 jQuery 1.2 以后可以用來獲取 window 和 document 的高 參數(shù) valString, Number, FunctionV1.0 設定CSS中 'height' 的值,可以是字符串或者數(shù)字,還可以是一個函數(shù),返回要設置的數(shù)值。函數(shù)接受兩個參數(shù),第一個參數(shù)是元素在...

http://www.o2fo.com/yfmth7/lv8jiozt.html

抱歉,暫時沒有相關的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時沒有相關的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時沒有相關的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

2931.block

原型:extern void block(int left, int top, int right, int bottom, int mode); 用法:#include <system.h> 功能:在屏幕上畫一矩形并填充。 說明:(left,top)指定左上角坐標,(right,bottom)指定右下角坐標。 mode決定畫圖方...

http://www.o2fo.com/cyykhsscsc/fgp1c3.html

2932.cursor

原型:extern void cursor(int mode); 用法:#include <system.h> 功能:設定光標形態(tài) 說明:mode值含義如下: 0x00:塊狀光標(默認) 0x80:下劃線光標 其它值無意義 舉例: // cursor.c #inclu...

http://www.o2fo.com/cyykhsscsc/sjr1c4.html

2933.delay

原型:extern void delay(unsigned int msec); 用法:#include <system.h> 功能:短暫延時 說明:延時msec*4毫秒 舉例: // delay.c #include <system.h> main() { int c; clrscr(); printf("\nHello, world...

http://www.o2fo.com/cyykhsscsc/lgy1c5.html

2934.sleep

原型:extern void sleep(unsigned int sec); 用法:#include <system.h> 功能:短暫延時 說明:延時sec秒 舉例: // sleep.c #include <system.h> main() { int c; clrscr(); printf("\nHello, world!"); ...

http://www.o2fo.com/cyykhsscsc/obk1c6.html

2935.textmode

原型:extern void textmode(int mode); 用法:#include <system.h> 功能:設定屏幕模式 說明:請參見UpdateLCD中關于mode的含義。 textmode會影響屏幕上已有內(nèi)容的顯示。 舉例: // textmode.c #include <system...

http://www.o2fo.com/cyykhsscsc/zln1c7.html

2936.rectangle

原型:extern void rectangle(int left, int top, int right, int bottom, int mode); 用法:#include <system.h> 功能:在屏幕上畫一矩形。 說明:(left,top)指定左上角坐標,(right,bottom)指定右下角坐標。 mode決定畫圖方式,...

http://www.o2fo.com/cyykhsscsc/qig1cj.html

2937.C++ 我們自己的find版本

...位置的索引。這是該函數(shù)的一個實現(xiàn): int find (apstring s, char c, int i) { while (i<s.length()) { if (s[i] == c) return i; i = i + 1; } return -1; } 不同于在apstring變量上調(diào)用find函數(shù),如find的第一個版本那樣,我們必須將apstring變量作為該find函數(shù)...

http://www.o2fo.com/hbvlgw/byscaozt.html

2938.標示注釋

理想上,任何?CSS 規(guī)則集之前都應該使用 C 風格注釋來解釋 CSS 塊的核心。這個注釋也要記錄對規(guī)則集特定部分編號的解釋。比如: /** * Helper class to truncate and add ellipsis to a string too long for it to fit * on a single line. * 1\. Prevent content ...

http://www.o2fo.com/lsguh2/ib6zyozt.html

2939.參數(shù)列表

...或 map,它會自動解析為一系列的參數(shù)。 @mixin dummy($a, $b, $c) { // ... } // Yep @include dummy(true, 42, 'kittens'); // Yep but nope $params: (true, 42, 'kittens'); $value: dummy(nth($params, 1), nth($params, 2), nth($params, 3)); // Yep $params: (true, 42, 'kittens'); @include dummy...

http://www.o2fo.com/lsguh2/txw3hozt.html

2940.height([val|fn])

...高度值(px)。 在 jQuery 1.2 以后可以用來獲取 window 和 document 的高 參數(shù) valString, Number, FunctionV1.0 設定CSS中 'height' 的值,可以是字符串或者數(shù)字,還可以是一個函數(shù),返回要設置的數(shù)值。函數(shù)接受兩個參數(shù),第一個參數(shù)是元素在...

http://www.o2fo.com/yfmth7/lv8jiozt.html

抱歉,暫時沒有相關的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門課程