W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
GoodCase
輸入注釋及函數(shù)定義:
1 /**
2 * @return ArrayList of all visible widgets
3 */
4 public ArrayList<Widget> getVisibleWidgets() {
5
插件給出生成的建議(灰色部分)
1 /**
2 * @return ArrayList of all visible widgets
3 */
4 public ArrayList<Widget> getVisibleWidgets() {
5 ArrayList<Widget> widgets = new ArrayList<Widget>();
6 for (Widget widget : getRootWidget()) {
7 if (widget.isVisible()) {
8 widgets.add(widget);
9 }
10 }
11 return widgets;
12 }
13
按Tab鍵 ,接受生成的代碼
1 /**
2 * @return ArrayList of all visible widgets
3 */
4 public ArrayList<Widget> getVisibleWidgets() {
5 ArrayList<Widget> widgets = new ArrayList<Widget>();
6 for (Widget widget : getRootWidget()) {
7 if (widget.isVisible()) {
8 widgets.add(widget);
9 }
10 }
11 return widgets;
12 }
注釋中用自然語言描述的部分,應按照正常編寫注釋時的敘述方式簡單、準確地描述代碼段的功能。不應把它當作ChatGPT類的工具 ,用對話、指令的方式描述 ,也不宜提出過于復雜或籠統(tǒng)的任務。
例如 ,以下是比較好的描述方式
. // 快速排序函數(shù)
. // Given two non-negative integers, num1 and num2 represented as string, return the sum of num1 and num2 as a string.
. // read the data in file "abc.txt", then print it out
以下敘述形式CodeGeeX可能無法準確理解:
. // 寫?個python腳本自動抓取GitHub Trending中有關(guān)ChatGPT的項目
. // 我想用Python爬取豆瓣電影TOP250的數(shù)據(jù) ,代碼要怎么寫?
. // 請寫? 段javascript代碼求解雞兔同籠問題:雞和兔? 共35個頭 ,94個腳 ,求雞兔分別多少。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: