搜索结果
查询Tags标签: Code,共有 1576条记录-
springboot通过code获取微信小程序UnionID
前提:将微信小程序绑定到微信开放平台帐号 !!! @RequestMapping("/wxGetUnionId") public Result wx(@RequestBody Map<String,Object> map) {Map<String, Object> remap = new HashMap<>();//1、向微信服务器 使用登录凭证 code 获取 se…
2022/2/11 11:42:41 人评论 次浏览 -
JsonParseException: Unexpected character ('?' (code xxx))
后台报错内容 JsonParseException: Unexpected character (? (code 255)) 原因 一般出现这种异常都是前台给后台传递的 JSON 字符串格式是错误的 例如: 前台给后台传递了一个 {aa:"aa",bb:"bb"} 这种字符串, 后台使用 jackson 将这个 JSON 字符串转为…
2022/2/11 6:13:30 人评论 次浏览 -
java中Object类讲解(二)
/*** Returns a hash code value for the object. This method is* supported for the benefit of hash tables such as those provided by* {@link java.util.HashMap}.* <p>* The general contract of {@code hashCode} is:* <ul>* <li>Whenever it i…
2022/2/10 17:13:23 人评论 次浏览 -
MySQL索引失效的10种场景
目录1 MySQL索引 1.1 问题引入 1.2 准备工作 1.2.1 创建user表 1.2.3 查看数据库版本 1.2.4 查看执行计划1.3 联合索引 1.3.1 联合索引中索引有效 1.3.2 联合索引中索引失效1.4 select *在《阿里巴巴开发手册》中明确说过,查询sql中禁止使用select *那么,你知道为什么吗…
2022/2/8 19:16:45 人评论 次浏览 -
google编码规范之htmlcssguide.html其一
一.背景This document defines formatting and style rules for HTML and CSS. It aims at improving collaboration, code quality, and enabling supporting infrastructure. It applies to raw, working files that use HTML and CSS, including GSS files. Tools are …
2022/2/8 6:15:08 人评论 次浏览 -
mysql添加数据的同时返回自增主键id
方法一(实测可用): <insert id="add" useGeneratedKeys="true" keyProperty="id" parameterType="com.zhengfeng.health.pojo.Order">insert into t_order (id, member_id, orderDate, orderType, orderStatus, setmeal…
2022/2/6 2:12:30 人评论 次浏览 -
关于vscode配置C/C++的配置文件问题
c_cpp_properties.json {"configurations": [{"name": "Win32","includePath": ["${workspaceFolder}/**"],"defines": ["_DEBUG","UNICODE","_UNICODE"],"compilerPath…
2022/2/5 17:13:59 人评论 次浏览 -
汇编语言实验5(王爽)
(1) assume cs:code,ds:data,ss:stackdata segmentdw 0123h,0456h,0789h,0abch,0defh,0fedh,0cbah,0789h data endsstack segmentdw 0,0,0,0,0,0,0,0 stack endscode segmentstart:mov ax,stackmov ss,axmov sp,16mov ax,datamov ds,axpush ds:[0]push ds:[2]pop …
2022/2/5 1:17:19 人评论 次浏览 -
[Android] 配置Android Studio的Wireless debugging
我又开始折腾Android Studio了,下载了最新版的AS,发现有个远程调试的功能,直接通过Wi-Fi在真机上调试,不用插数据线,很方便 理论上满足下面这些条件后Android Studio自带的"Pair Device over Wi-Fi"就能识别到设备了:运行Android Studio的的电脑和手机连同…
2022/2/4 23:22:06 人评论 次浏览 -
C++函数实现计算一个数的阶乘
递归 #include <iostream> using namespace std;long long factorial(int n);int main() {int n;cin >> n;cout << factorial(n) << endl;return 0; }long long factorial(int n) {// write your code here......if(n==1)return 1;return n * fac…
2022/2/4 14:13:14 人评论 次浏览 -
Competition-Level Code Generation with AlphaCode
这是篇论文: competition_level_code_generation_with_alphacode.pdf Backspace You are given two strings s and t, both consisting of lowercase English letters. You are going to type the string s character by character, from the first character to the last…
2022/2/3 23:13:24 人评论 次浏览 -
Java从零码起08-生成验证码
需求:定义方法随机生产一个指定位数的验证码(每位可能是数字,大写字母,小写字母) public class Main {public static void main(String[] args) {//输入验证码位数System.out.println("输入验证码的位数:");Scanner sc = new Scanner(System.in);int num …
2022/2/3 20:15:27 人评论 次浏览 -
Java枚举类在生产环境中的使用方式
前言Java枚举在项目中使用非常普遍,许多人在做项目时,一定会遇到要维护某些业务场景状态的时候,往往会定义一个常量类,然后添加业务场景相关的状态常量。但实际上,生产环境的项目中业务状态的定义大部分是由枚举类来完成的,因为更加清晰明确,还能自定义不同的方法来…
2022/2/3 17:12:46 人评论 次浏览 -
控制台执行java
Hello World新建一个文件夹,存放代码 新建一个java文件文件后缀为.java在notepad++编写代码public class Hello{public static void main(String[] args){System.out.print("Hello World!");} }控制台编译java文件 G:\java\study_code>javac Hello.java G…
2022/2/3 17:12:24 人评论 次浏览 -
linux如何重新分区
参考文章 https://blog.csdn.net/code_segment/article/details/79237500 sudo apt-get install gparted 安装图形化的分区软家件,安装好后直接命令启动软件 1. 因为我要升级ubuntu的版本系统提示boot的分区空间不足,我打算从swap分区撸点过来, 2. 先umount分区右击关闭…
2022/2/3 7:14:58 人评论 次浏览