
java基础整理
NO如果
加油,进步
展开
-
基础整理
1.什么是索引,索引的作用是什么?索引是对数据库表中一列或多列的值进行排序的一种结构,使用索引可快速访问数据库表中的特定信息索引的一个主要目的就是加快检索表中数据的方法,亦即能协助信息搜索者尽快的找到符合限制条件的记录ID的辅助数据结构。2.public class TestInteger { public static void main(String args[]){ Integer a=...原创 2018-03-12 13:51:23 · 153 阅读 · 0 评论 -
java常见返回,后端返回
package com.mryt.spell.user.center.domain; import java.io.Serializable; public class CommonResult<T> implements Serializable { private static final String SUCCESS_MESSAGE = "success"; ...原创 2019-06-13 17:54:37 · 3738 阅读 · 0 评论