码迷,mamicode.com
首页 >  
搜索关键字:__main__    ( 65088个结果
Spring Boot 学习(一) 注意事项
编写引导类注意要标明注解 @SpringBootApplication SpringApplication.run(BootWeb01Application.class, args); 再编写main方法的时候使用run方法 起步依赖spring-boot-starter-parent 父工程,主要 ...
分类:编程语言   时间:2021-07-05 17:08:07    阅读次数:0
10.坑-千万别把局部变量的指针作为函数的返回值
#include <stdio.h> #include <string.h> int * getarr(int * ipt); int main() { int a = 99; char * ch ; int *p = getarr(&a); //gets(ch); printf("%d\n", * ...
分类:其他好文   时间:2021-07-05 16:56:01    阅读次数:0
QEMU树莓派下配置及安装软件-3
1、设置加速,修改/etc/apt/sources.list如下 deb http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ buster main contrib non-free rpi deb-src http://mirrors.tu ...
分类:其他好文   时间:2021-07-05 16:54:39    阅读次数:0
C# Json 解析,针对数字开头变量Json字符串转模型(Model)
namespace 解析数字开头的变量JSON { class Program { static void Main(string[] args) { string strJson = "{\"1st_attempt\":\"2021-02-09 16:32:15\",\"2nd_attempt\" ...
分类:Windows程序   时间:2021-07-05 16:41:12    阅读次数:0
JavaSE:NIO编程实例
客户端 1 public static void main(String[] args) throws IOException { 2 3 4 5 // 创建客户端 6 7 SocketChannel sc = SocketChannel.open(); 8 9 10 11 // 指定要连接的服务器 ...
分类:编程语言   时间:2021-07-02 16:40:13    阅读次数:0
C# Async Streams
先看代码 using System; using System.Collections.Generic; using System.Threading.Tasks; namespace AsyncStream { class Program { static async Task Main(stri ...
分类:Windows程序   时间:2021-07-02 15:58:46    阅读次数:0
POJ1087 A Plug for UNIX
题目大意: 有电器和配套的插座,以及每种无限个的装换插头 问:最少多少电器用不上电? 画画图,可以知道是一个二分图,中间结点需要用传递闭包优化掉 Floyd+匈牙利算法(二分图匹配) 1 #include<map> 2 #include<cmath> 3 #include<queue> 4 #inc ...
分类:其他好文   时间:2021-07-02 15:43:27    阅读次数:0
二叉树的前、中、后序排列
import lombok.*; /** * @author: Small sunshine * @Description: * @date: 2021/6/30 8:05 下午 */ public class SortTree { public static void main(String[] ...
分类:其他好文   时间:2021-07-01 17:04:50    阅读次数:0
设计模式-七大设计原则-依赖倒转原则
一、依赖倒转原则介绍 二、依赖倒转原则引入 1.方式一(传统方式) public class DependencyInversion { public static void main(String[] args) { Person person = new Person(); person.rec ...
分类:其他好文   时间:2021-07-01 16:40:10    阅读次数:0
设计模式-七大设计原则-单一职责原则
一、单一职责原则介绍 二、单一职责原则引入 1.方式一(违反了单一职责原则) 解析:摩托车、汽车是公路上运行的,但飞机并不是在公路上运行的。 public class SingleResponsibility1 { public static void main(String[] args) { / ...
分类:其他好文   时间:2021-07-01 16:31:05    阅读次数:0
65088条   上一页 1 2 3 4 5 6 ... 6509 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!