最近這段ChatGPT真的非常火,和ChatGPT相關的AI 服務也是各種如火如荼的研究中。今天我們來看看下ChatGPT在編碼方面的應用,最近發現一個叫做「AI Coding Assistant」 的IntelliJ IDEA插件,它就是集合了ChatGPT的技術,我們來看看有多麼的智能,是否以後真的有可能會代替我們程式設計師的工作。
為了開始使用插件,必須要有一個 OpenAI 的令牌。如果你不知道在哪裡可以找到它,可以在https://platform.openai.com/account/api-keys這裡獲取,關於如何註冊。百度谷歌教學一大堆。
此外,下載並安裝IntelliJ IDEA的AI Coding Assistant」外掛程式:
圖一-IntelliJ IDEA 設定中的 「AI Coding Assistant」插件
第一個任務先來個簡單的,就是讓它自動產生列印hello world的程式碼。
現在你給我產生一個Person類別。
import java.util.ArrayList; import java.util.Arrays; import java.util.Comparator; import java.util.IntSummaryStatistics; import java.util.List; import java.util.NoSuchElementException; public class Main { public static void main(String[] args) { System.out.println("Hello World"); final List<Person> people = generatePeople(); // find oldest person in the list Person oldestPerson = people.stream() .max(Comparator.comparing(Person::getAge)) .orElseThrow(NoSuchElementException::new); System.out.println("Oldest person is: " + oldestPerson.getName()); // find max,min,avg age of the people IntSummaryStatistics stats = people.stream() .mapToInt(Person::getAge) .summaryStatistics(); System.out.println("Max Age: " + stats.getMax()); System.out.println("Min Age: " + stats.getMin()); System.out.println("Avg Age: " + stats.getAverage()); } public static List<Person> generatePeople() { return Arrays.asList( new Person("John", 25), new Person("Jane", 30), new Person("Jack", 20), new Person("Jill", 35) ); } /** * Capitalizes the first letter of a given string and lowercases the rest. * * @param s The string to capitalize * @return The capitalized string */ public static String capitalize(String s) { /* This code checks if the length of the string "s" is 0. If it is, it returns the string. If not, it returns the first character of the string in uppercase and the rest of the characters in lowercase. */ if (s.length() == 0) return s; return s.substring(0, 1).toUpperCase() + s.substring(1).toLowerCase(); } } // class Person with name and age class Person { private String name; private int age; public Person(String name, int age) { this.name = name; this.age = age; } public String getName() { return name; } public int getAge() { return age; } }
利用ChatGPT這樣的AI可以產生一些程式碼,如上面的例子所示,但是面對一些複雜的業務還是做不到的。我們可以藉助這樣的工具,幫助我們提高工作上的效率,但是也不用擔心他們會取代我們。
以上是天啊,ChatGPT真的要代替我們工作了嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!