码迷,mamicode.com
首页 >  
搜索关键字:hello    ( 17822个结果
spring-boot spring-MVC自动配置
Spring MVC auto-configuration Spring Boot 自动配置好了SpringMVC 以下是SpringBoot对SpringMVC的默认配置:==(WebMvcAutoConfiguration)== Inclusion of ContentNegotiatingVi ...
分类:编程语言   时间:2020-06-07 14:36:54    阅读次数:70
const char * 、 char const * 、 char * const 三者的区别
1、const char * p p指向的东西,不能通过p来修改,其指向的内容可以通过其他的指针来修改 char str[] = "hello"; const char* p = str; p[0] = 's'; // 错误,不能通过const char* 指针来修改其指向的值 str[0] = ' ...
分类:其他好文   时间:2020-06-07 12:57:38    阅读次数:66
python面向对象(一)
1.面向对象思维,关于self的认识 (1)类的基本形式: class 类名: def 方法: pass 实例: # 基本格式,类中的方法与函数类似,但是参数中多了self参数 class boj: def mot(self,arg): print(self,arg) pass boj().mot( ...
分类:编程语言   时间:2020-06-07 12:34:53    阅读次数:63
[Java]遍历字符串.length(), .charAt()
public class CharAt { public static void main(String[] args) { String ac = "Hello World"; //for (int i = 0; i < ac.length(); i++) int i = 0; //while ( ...
分类:编程语言   时间:2020-06-07 11:07:35    阅读次数:73
2-常用函数接口与方法引用
常用函数接口 接口 参数 返回类型 描述 Predicate<T> T boolean 用于判断一个对象. Consumer<T> T void 用于接收一个对象进行处理但没有返回. Function<T,R> T R 转换一个对象为不同类型的对象 Supplier<T> None T 提供一个对象 ...
分类:其他好文   时间:2020-06-07 09:22:12    阅读次数:60
线程-Thread类
threading-Thread类 方法与multiprocessing中基本一致 线程创建 Thread类创建 from threading import Thread import time def sayhi(name): time.sleep(2) print('%s say hello' ...
分类:编程语言   时间:2020-06-06 21:42:39    阅读次数:76
20200606~linux 简单命令
1.创建多层级目录 mkdir -p idoxu/istester/2020 2.进入当前用户主目录 cd ~ 3.进入当前目录 cd . 4.创建新文件 touch vi echo 'hello' > filename cp 5.进入目录并且创建文件 cd etc/idoXu/ && touch ...
分类:系统相关   时间:2020-06-06 20:11:35    阅读次数:79
go channel
package main import ( "time" "fmt" ) func main() { c := make(chan string) go func() { time.Sleep(1 * time.Second) c <- "hello from chan" // 数据发送到chann ...
分类:其他好文   时间:2020-06-06 18:45:24    阅读次数:51
入门 - 06 - HelloWorld
入门 - 06 - HelloWorld 一、创建Java文件 随便新建一个文件夹,用来存放我的代码 新建一个java文件-->新建一个记事本,把后缀改为.java 后缀名为.java Hello.java 【注意点】系统可能没有显示文件后缀名,我们需要手动打开 文件资源管理器 - 显示- 文件夹选 ...
分类:其他好文   时间:2020-06-06 18:38:11    阅读次数:57
一文了解Docker容器技术的操作
一文了解Docker容器技术的操作 前言一、Docker是什么二、Docker的安装及测试Docker的安装Docker的Hello world测试三、Docker的常见操作镜像的基本操作容器的基本操作镜像、容器的导入和导出四、关于DockerFile总结 前言 相信点进这篇文章的Coder,不管是 ...
分类:其他好文   时间:2020-06-06 14:28:17    阅读次数:118
17822条   上一页 1 ... 85 86 87 88 89 ... 1783 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!