码迷,mamicode.com
首页 >  
搜索关键字:c char c++ string    ( 126199个结果
MyBatis温故而知新-底层运行原理
准备工作 public class MainClass { public static void main(String[] args) throws Exception { String resources = "mybatis-config.xml"; InputStream inputStre ...
分类:其他好文   时间:2021-07-07 17:50:47    阅读次数:0
文件上传
@PostMapping("uploads") public String posts(@RequestParam("file") List<MultipartFile> files){//参数file以list数组接收 if (files.isEmpty()) { return "上传失败,请选择 ...
分类:Web程序   时间:2021-07-06 16:22:43    阅读次数:0
垂直外边距的重叠
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> .box1{ width: 100px; height: 100px; background-color:red ...
分类:其他好文   时间:2021-07-05 18:59:08    阅读次数:0
php 接口实例
接口定义 interface 关键字定义的类就叫接口 接口实例 <?php //接口定义 interface Human{ //跑步 public function run(); //跳远 public function jump(); } //接口实现 class Person implement ...
分类:Web程序   时间:2021-07-05 18:53:37    阅读次数:0
IDEA搭建一个SpringBoot项目——十分详细(web+mysql)
本博客记录了IDEA中使用Springboot框架搭建一个web+mysql项目的详细过程,适合springboot初学者学习。 ...
分类:数据库   时间:2021-07-05 18:53:16    阅读次数:0
获取类路径下文件的绝对路径
获取类路径下文件的绝对路径 在IDEA软件中,src是类的根路径。 package com.happy.reflection; public class AboutPath { public static void main(String[] args) { String path = Thread ...
分类:其他好文   时间:2021-07-05 18:39:57    阅读次数:0
Synchronized和Lock
模拟多个线程同时买票 package com.JUC; //基本买票 /* 线程就是一个单独的资源类,没有任何附属操作 * */ public class SynchronizedDemo1 { public static void main(String[] args) { Ticket tick ...
分类:其他好文   时间:2021-07-05 18:23:51    阅读次数:0
Mybatis之foreach用法
Mybatis之foreach用法 List、Array、Map三种类型遍历 在mybatis的xml文件中构建动态sql语句时,经常会用到标签遍历查询条件。特此记录下不同情况下书写方式! 1. foreach元素的属性 collection: 需做foreach(遍历)的对象,作为入参时,list ...
分类:其他好文   时间:2021-07-05 18:13:31    阅读次数:0
js中的charAt()与charCodeAt(),fromCharCode(),fromCodePoint()
charAt() 用户获得字符串中指定下标的字符 s='abcdef' console.log(s.charAt(0)) //a 注意:只能读,不能写 s='abcdef' s.charAt(0)='c' console.log(s) 运行结果 现在能想到的修改字符串中某个字符的方式就是将字符串转为 ...
分类:Web程序   时间:2021-07-05 18:12:53    阅读次数:0
函数的不定参数你会用吗?
如果一个方法中需要传递多个参数且某些参数又是非必传,应该如何处理? 案例 // NewFriend 寻找志同道合朋友 func NewFriend(sex int, age int, hobby string) (string, error) { // 逻辑处理 ... return "", nil ...
分类:其他好文   时间:2021-07-05 18:06:54    阅读次数:0
126199条   上一页 1 2 3 4 5 6 ... 12620 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!