【极速入门版】编程小白也能轻松上手Comate AI编程插件

文章目录

    • 概念
    • 使用
      • 错误检测与修复能力
      • API生成代码
      • 生成json格式做开发测试

在目前的百模大战中,AI编程助手是程序员必不可少的东西,市面上琳琅满目的产品有没有好用一点的,方便一点的呢?今天工程师令狐向大家介绍一款极易入门的国产编程AI助手 Comate!好久没有写这种教程类的博客了,今天估摸着分享整理一下,也欢迎大家在评论区分享自己日常工作学习中用到的好用、方便的工具~

image-20240627105619804

概念

Comate是一款集成了百度先进AI技术的智能编程辅助工具,它能通过深度学习理解并预测你的代码意图,大大提升编程效率,降低学习门槛,特别适合对编程尚处在摸索阶段的新手朋友。对于编程小白来说,Comate的一大亮点在于它的智能化自动补全功能。不同于传统的代码提示工具,Comate能够根据你的输入习惯、项目结构以及实际需求,动态生成最符合预期的代码片段,极大地减轻了记忆大量API和语法的工作量。此外,Comate还具备强大的错误检测与修复能力。当你的代码出现逻辑错误或语法问题时,它能迅速定位问题所在,并给出相应的修改建议,让你告别“一行代码调试一整天”的痛苦经历。

官方免费在线使用:https://comate.baidu.com/?inviteCode=midsiv0w

image-20240627102918906

接下来我将带着大家展示一下工作中常用的场景:

  • 错误检测与修复
  • API生成代码
  • 生成json格式做开发测试

使用

今天带着大家使用一下这款产品,作为Java后端选手,我选择在IDEA里向大家演示几种常见的使用。

我们直接在IDEA里的插件库里安装Comate AI

启动我们的插件工具:

在这里插入图片描述

错误检测与修复能力

首先我们展示一下日常工作中经常用到的场景------错误检查与修复!这个环节不用说,直接看图:

我先写一段错误代码:

public class Main {public static void main(String[] args) {HashMap<String, String> map =new HashMap<>();map.put("bug",null);try {System.out.println(map.get("bug").toLowerCase());} catch (NullPointerException e) {e.printStackTrace();System.out.println("Value is null");}}
}

image-20240627101720428

执行代码以后报错:

image-20240627101828121

image-20240627101904675

image-20240627102532840

API生成代码

可以用”#“号唤醒,也可以直接点击:知识

image-20240627103430400

image-20240627103608116

import requestsdef get_weather(adcode=None, type='base', cache=None, lang='zh-cn'):"""获取天气信息:param adcode: 城市代码(如果不提供,系统将自动选择):param type: base=实况天气; all=预报天气:param cache: 是否获取缓存数据:param lang: 语言类型(zh-cn、ru-ru、en-us、ja-jp、ko-kr):return: 返回的天气信息"""base_url = "http://prod-cn.your-api-server.com"  # 根据实际情况选择正式环境、开发环境或测试环境endpoint = "/location/weather"params = {'adcode': adcode,'type': type,'cache': cache,'lang': lang}response = requests.get(base_url + endpoint, params=params)if response.status_code == 200:data = response.json()if data['code'] == 0:return data['data']  # 返回天气数据else:print(f"请求成功但返回错误:{data['msg']}")else:print(f"请求失败,状态码:{response.status_code}")return None# 示例用法
weather_data = get_weather(adcode='你的城市代码', type='base')
if weather_data:print(weather_data)  # 打印天气数据

当然我们可以用其他的编程语言,比如Java

image-20240627103815419

import okhttp3.*;import java.io.IOException;public class WeatherApiClient {private static final MediaType JSON = MediaType.get("application/json; charset=utf-8");private static final OkHttpClient client = new OkHttpClient();// Base URL for development environment (change as needed)private static final String BASE_URL = "http://dev-cn.your-api-server.com";public WeatherResponse getWeatherInfo(String adcode, String type, String cache, String lang) throws IOException {// Build the request URL with query parametersHttpUrl.Builder urlBuilder = HttpUrl.parse(BASE_URL + "/location/weather").newBuilder();if (adcode != null) urlBuilder.addQueryParameter("adcode", adcode);if (type != null) urlBuilder.addQueryParameter("type", type);if (cache != null) urlBuilder.addQueryParameter("cache", cache);if (lang != null) urlBuilder.addQueryParameter("lang", lang);HttpUrl url = urlBuilder.build();// Create the requestRequest request = new Request.Builder().url(url).build();// Send the request and process the responsetry (Response response = client.newCall(request).execute()) {if (!response.isSuccessful()) {throw new IOException("Unexpected code " + response);} else {// Parse the response body into WeatherResponse objectString responseBody = response.body().string();// Here you would typically use a JSON library like Gson or Jackson to deserialize the JSON// For simplicity, we assume the responseBody is already in the format of WeatherResponse// In a real-world scenario, you would deserialize it into WeatherResponse object// WeatherResponse weatherResponse = new Gson().fromJson(responseBody, WeatherResponse.class);// For demonstration purposes, we'll just print the response bodySystem.out.println("Response body: " + responseBody);// Return a dummy WeatherResponse for demonstration (in a real scenario, you would return the deserialized object)return new WeatherResponse(); // Replace with actual deserialization}}}public static void main(String[] args) {WeatherApiClient client = new WeatherApiClient();try {WeatherResponse response = client.getWeatherInfo("123456", "all", "true", "zh-cn");System.out.println(response); // This will print the dummy WeatherResponse object} catch (IOException e) {e.printStackTrace();}}
}import okhttp3.*;import java.io.IOException;public class WeatherApiClient {private static final MediaType JSON = MediaType.get("application/json; charset=utf-8");private static final OkHttpClient client = new OkHttpClient();// Base URL for development environment (change as needed)private static final String BASE_URL = "http://dev-cn.your-api-server.com";public WeatherResponse getWeatherInfo(String adcode, String type, String cache, String lang) throws IOException {// Build the request URL with query parametersHttpUrl.Builder urlBuilder = HttpUrl.parse(BASE_URL + "/location/weather").newBuilder();if (adcode != null) urlBuilder.addQueryParameter("adcode", adcode);if (type != null) urlBuilder.addQueryParameter("type", type);if (cache != null) urlBuilder.addQueryParameter("cache", cache);if (lang != null) urlBuilder.addQueryParameter("lang", lang);HttpUrl url = urlBuilder.build();// Create the requestRequest request = new Request.Builder().url(url).build();// Send the request and process the responsetry (Response response = client.newCall(request).execute()) {if (!response.isSuccessful()) {throw new IOException("Unexpected code " + response);} else {// Parse the response body into WeatherResponse objectString responseBody = response.body().string();// Here you would typically use a JSON library like Gson or Jackson to deserialize the JSON// For simplicity, we assume the responseBody is already in the format of WeatherResponse// In a real-world scenario, you would deserialize it into WeatherResponse object// WeatherResponse weatherResponse = new Gson().fromJson(responseBody, WeatherResponse.class);// For demonstration purposes, we'll just print the response bodySystem.out.println("Response body: " + responseBody);// Return a dummy WeatherResponse for demonstration (in a real scenario, you would return the deserialized object)return new WeatherResponse(); // Replace with actual deserialization}}}public static void main(String[] args) {WeatherApiClient client = new WeatherApiClient();try {WeatherResponse response = client.getWeatherInfo("123456", "all", "true", "zh-cn");System.out.println(response); // This will print the dummy WeatherResponse object} catch (IOException e) {e.printStackTrace();}}
}

我们可以指定某段业务代码,然后通过AI去指定生成它的调用接口:

image-20240627104355427

import java.util.HashMap;
import java.util.Map;public class MapUtils {/*** Tries to retrieve and convert to lowercase a value from a given map.* If the value is null or the key is not present, it returns null.** @param map  the map to search in* @param key  the key to search for* @return the lowercase value, or null if the value is null or the key is missing*/public static String getLowerCaseValue(Map<String, String> map, String key) {String value = map.get(key);if (value == null) {return null;}return value.toLowerCase();}// This method simulates the original main function logicpublic static void processMapAndPrint(Map<String, String> inputMap, String keyToSearch) {try {String lowerCaseValue = getLowerCaseValue(inputMap, keyToSearch);if (lowerCaseValue != null) {System.out.println(lowerCaseValue);} else {System.out.println("Value is null or key is missing");}} catch (NullPointerException e) {// In the new design, this should never happen as getLowerCaseValue handles nullse.printStackTrace();System.out.println("Unexpected NullPointerException");}}public static void main(String[] args) {HashMap<String, String> map = new HashMap<>();map.put("bug", null);processMapAndPrint(map, "bug");}
}

生成json格式做开发测试

这个场景也是比较常用的,对吧啊?特别是做开发测试的时候,非常的方便。

image-20240627105226809

{"请求": {"URL": "/api/processMapAndPrint","HTTP方法": "POST","请求头": {"Content-Type": "application/json"},"请求体": {"inputMap": {"key1": "Value1","key2": "VALUE2","key3": "vAlue3"},"keyToSearch": "key2"}},"响应": {"状态码": 200,"响应头": {"Content-Type": "text/plain"},"响应体": "value2"}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/36001.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

容易混淆的ITAM与CMDB

在信息技术管理领域&#xff0c;IT资产管理&#xff08;ITAM&#xff09;和配置管理数据库&#xff08;CMDB&#xff09;是两个至关重要的工具。尽管它们在某些方面存在交集&#xff0c;但各自具备独特的功能和应用场景。本文将深入探讨ITAM和CMDB的概念、功能、优势&#xff0…

Linux内核 -- 多核操作之on_each_cpu函数实现与使用

使用 on_each_cpu 在多核系统中执行对称操作 背景介绍 在多核系统中&#xff0c;有时需要在每个 CPU 上执行特定的操作。这种操作需要确保每个 CPU 都能执行相同的函数&#xff0c;以实现对称的处理。在 Linux 内核中&#xff0c;提供了一个标准函数 on_each_cpu&#xff0c;…

mysql中in参数过多优化

优化方式概述 未优化前 SELECT * FROM rb_product rb where sku in(1022044,1009786)方案2示例 public static void main(String[] args) {//往list里面设置3000个值List<String> list new ArrayList<>();for (int i 0; i < 3000; i) {list.add(""…

python-docx 获取页面大小、设置页面大小(纸张大小)

本文目录 前言一、docx纸张大小介绍1、document.xml① 关于 document.xml 的一些知识点② 纸张大小在哪里③ 纸张大小都有啥④ EMU对应的尺寸列表二、获取docx纸张大小1、完整代码2、运行效果图三、python为docx设置纸张大小1、完整代码2、效果图前言 今天的这边文章,我们来说…

项目实训-vue(八)

项目实训-vue&#xff08;八&#xff09; 文章目录 项目实训-vue&#xff08;八&#xff09;1.概述2.医院动态图像轮播3.页面背景板4.总结 1.概述 除了系统首页的轮播图展示之外&#xff0c;还需要在医院的首页展示医院动态部分的信息&#xff0c;展示医院动态是为了确保患者、…

【PHP】控制摄像头缩放监控画面大小,并保存可视画面为图片

一、前言 功能描述 调用摄像头并可以控制缩放摄像头监控画面的大小&#xff0c;把可视画面保存为图片。 我使用的是USB摄像头&#xff0c;其他摄像头此方法应该也通用。 使用技术 使用到的技术比较简单&#xff0c;前端使用WebcamJS插件调用摄像头&#xff0c;并摄像头监控…

shell实用脚本1

参考公众号民工哥技术之路 场景一&#xff1a; 有两台服务器&#xff0c;a服务器的IP为11.0.1.18&#xff0c;b服务器的IP为11.0.1.12&#xff0c;都有个目录/app/tmp/test&#xff0c;我们需要比较这个目录里面的文件的一致性 #!/bin/bash ################################…

《mysql》--mysql约束

数据库约束 有的时候数据库中的数据是有一定要求的&#xff0c;有些数据认为是合法数据&#xff0c;有些是非法数据&#xff0c;如果靠人工检查显然是不靠谱的&#xff1b; 数据库会自动的对数据的合法性进行校验检查目的就是&#xff0c;保证数据中能够避免被插入/修改一些非…

Linux基础 - 使用 ssh 服务管理远程主机(window linux vscode)

目录 零. 简介 一. 打开linux shh 二. window连接linux 三. linux连接linux 四. VSCode远程 零. 简介 SSH&#xff08;Secure Shell&#xff09;服务是一种网络协议&#xff0c;主要用于在不安全的网络环境中为计算机之间的通信提供安全的加密连接。 SSH 服务具有以下重要…

二、安装虚拟机

本篇来源&#xff1a;山海同行 本篇地址&#xff1a;https://shanhaigo.cn/courseDetail/1805875642621952000 本篇资源&#xff1a;以整理到-山海同行 一、官网下载centos7 1. 进入CentOS 官方网站 官方网站&#xff1a;https://www.centos.org/download/ 2. 选择iso 点击下…

Java中的注解:原理与实战

Java中的注解&#xff1a;原理与实战 大家好&#xff0c;我是免费搭建查券返利机器人省钱赚佣金就用微赚淘客系统3.0的小编&#xff0c;也是冬天不穿秋裤&#xff0c;天冷也要风度的程序猿&#xff01; Java注解&#xff08;Annotation&#xff09;是一种用于在代码中添加元数…

在nginx服务器发布项目以及在tomcat服务器发布项目

在nginx服务器发布项目&#xff1a; nginx有一个“热部署”或“无缝升级”的特性&#xff0c;这意味着在不停止服务的情况下&#xff0c;也可以更新配置文件和html文件夹。 如果上传的是配置文件&#xff0c;或者修改了nginx的配置&#xff0c;那么可能需要重启nginx来应用这…

高中数学:不等式-常用不等式知识点汇总

一、基本性质 比较大小的常用两种方法&#xff1a;作差法&#xff0c;作商法 等式性质 不等式性质 二、基本(均值)不等式 扩展 三、二次函数与一元二次方程不等式 定义 解的对应关系 一元二次不等式的求解过程 四、二元一次不等式(组)与线性规划 关键在于求多个不等…

无线领夹麦克风怎么挑选,能让声音变好听的领夹麦推荐大全

近年来&#xff0c;随着直播销售和个人视频日志&#xff08;Vlog&#xff09;的流行&#xff0c;自媒体内容创作已经成为一种文化现象。这一现象不仅改变了人们获取信息的方式&#xff0c;也极大地推动了相关音频设备的发展。无线领夹麦克风&#xff0c;以其轻巧的设计和出色的…

MySQL数据库基础练习系列:科研项目管理系统

DDL CREATE TABLE Users (user_id INT AUTO_INCREMENT PRIMARY KEY COMMENT 用户ID,username VARCHAR(50) NOT NULL UNIQUE COMMENT 用户名,password VARCHAR(255) NOT NULL COMMENT 密码,gender ENUM(男, 女) NOT NULL COMMENT 性别,email VARCHAR(100) UNIQUE COMMENT 邮箱 …

【杂记-浅谈VRRP虚拟路由器冗余协议】

一、VRRP协议概述 VRRP&#xff0c;Virtual Router Redundancy Protocol&#xff0c;即虚拟路由器冗余协议&#xff0c;是一种用于提高网络可靠性和容错能力的协议。它能够在多个路由器之间共享一个虚拟IP地址&#xff0c;当主路由器失效时&#xff0c;备用路由器可以接管虚拟…

字节码编程ASM之idea插件asm bytecode outline的使用

写在前面 直接用ASM来编写字节码程序难度其实还是蛮大的&#xff0c;为此&#xff0c;就有热心人事开发了相关的idea插件 &#xff0c;其中比较优秀的一个是asm bytecode outline,本文就来一起看下如何使用。 1&#xff1a;安装 file->setting->plugins,搜索asm bytec…

gin-vue-amdin 新增路由

1&#xff1a;在api目录的example 下新建controller 层如下图&#xff08;&#xff09;&#xff1a; 在enter.go 中 加入 这个新建的结构体&#xff1a; 2&#xff1a;在router 的example 文件夹下 新建对应的路由文件 3&#xff1a;在initlize 的router 中 添加对应的代码&a…

PDF处理篇:有哪些免费的PDF注释工具

PDF 是一种功能强大的格式&#xff0c;广泛用于处理和传输数据。您可以创建自己的 PDF 文件&#xff0c;也可以使用其他人创建的 PDF 文件。但是&#xff0c;有时您想在 PDF 文件中包含其他文本、图形和其他元素。这就是 PDF 注释器为您提供帮助的地方。 有许多可用的 PDF 注释…

Bazel与Gradle工具差异

之前介绍Bazel文章中有同学闻到Bazel与Gradle工具的差异。这篇文章我们解答这个问题。 来自Bazel员工的说法 Bazel和Gradle强调构建体验的不同方面。在某种程度上,它们的侧重点是互斥的——Gradle对灵活性和非突出性的要求对它的构建结构进行了限制,而Bazel对可靠性和性能的…