创建一个简单的grpc 客户端和服务端 最近在工作中需要用到grpc ,学习来源于bilibili dewei_zhang的视频 创建一个protobuf 文件: hello_world.proto // 定义一个服务的框架,服务名和服务下的函数名,以及函数下的request 和response, ...
分类:
其他好文 时间:
2021-06-06 19:42:28
阅读次数:
0
MyBatis 本是apache的一个开源项目iBatis,它是一个持久层框架。后代码从apache迁移到google,改为MyBatis.MyBatis架构原理: 入门程序:1、导包 https://github.com/mybatis/mybatis-3/releases 2. 创建log4j. ...
分类:
其他好文 时间:
2021-06-06 19:07:49
阅读次数:
0
用python在一个图中显示画两个hist图: import random import numpy from matplotlib import pyplot x = [random.gauss(3,1) for _ in range(400)] y = [random.gauss(4,2) fo ...
分类:
编程语言 时间:
2021-06-06 19:01:54
阅读次数:
0
题目—01字符串 (shiyancang.cn) 1 #include<bits/stdc++.h> 2 using namespace std; 3 4 int main() 5 { 6 string a="0"; 7 int n; 8 cin>>n; 9 string ans=""; 10 if ...
分类:
其他好文 时间:
2021-06-06 19:01:00
阅读次数:
0
随便新建一个文件夹,存放代码 新建一个java文件 文件后缀名为.java Hello.java 编写代码 public class Hello{ public static void main(String[] args){ System.out.print("hello world!"); } ...
分类:
其他好文 时间:
2021-06-06 18:52:26
阅读次数:
0
#使用Markdown格式 最近的事 课程考试 程序比赛 四级 回家的事 考研还是就业(好慌) 考驾照 该不该买计算机网络的书 Linux的学习 public static void main(String[] args){ SyStem.out.println("Hello,World"); } ...
分类:
其他好文 时间:
2021-06-05 18:37:20
阅读次数:
0
一、题目: 二、思路: 这道题思路非常妙:smile:,我们先理清思路,然后再来说这种思路为什么妙。 先考虑如果 \(a\) 中没有 \(-1\) 的情况。 第一步,找到一个质数 \(P\),满足 \(P\equiv 1\pmod K\)。即 \(K|(P-1)\)。 第二步,找到模 \(P\) 的 ...
分类:
其他好文 时间:
2021-06-05 18:05:31
阅读次数:
0
Hello World 随便建一个文件夹,存放代码 新建一个java文件 文件后缀名.java Hello 【注意点】系统没有显示文件后缀名,需要手动打开 编写代码 public class Hello{ public static void main(String[] args){ System. ...
分类:
其他好文 时间:
2021-06-04 18:59:52
阅读次数:
0
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.EventSystems; public class ImageDrap : MonoBehaviour, ...
分类:
编程语言 时间:
2021-06-02 20:56:54
阅读次数:
0
新建一个java文件 文件后缀为.java Hello.java 编写代码 public class Hello{ public static void main(String[] args){ System.out.print("Hello,world"); } } 编译javac java文件( ...
分类:
其他好文 时间:
2021-06-02 20:48:48
阅读次数:
0