码迷,mamicode.com
首页 >  
搜索关键字:osd out    ( 36245个结果
nacos 集群分布式部署入门
一、下载安装包(本文使用1.4版本) 下载地址:https://github.com/alibaba/nacos/releases/tag/1.4.1 二、数据库创建 创建脚本:解压后 nacos \ conf \ nacos-mysql.sql 新建数据库,执行该脚本即可,创建后数据库如下: 三、 ...
分类:其他好文   时间:2021-04-01 13:08:13    阅读次数:0
设单链表中存放着n个字符,每个节点保存一个字符。试编写算法,判断该字符串是否有中心对称关系。
1 #include<iostream> 2 #include<cstring> 3 #include<cstdlib> 4 using namespace std; 5 struct node* create1(string); 6 struct node* create2(string); 7 ...
分类:编程语言   时间:2021-03-31 12:29:24    阅读次数:0
C++Template学习
template<typename T> void funcTmp(T a, T b) { cout << "this is yiban" << endl; } template<> void funcTmp(const char* a, const char* b) { cout << "this ...
分类:编程语言   时间:2021-03-31 12:19:34    阅读次数:0
关于kratos的底层赋值参考
package main import ( "fmt" "time" ) func main() { s := NewServices( SetName("peter"), SetTimeout(time.Second*5), ) fmt.Println("name:", s.conf.Name) ...
分类:其他好文   时间:2021-03-31 12:16:53    阅读次数:0
C++实现简易线程池
#include <iostream> #include <vector> #include <thread> #include <mutex> #include <condition_variable> #include <queue> #include <functional> using na ...
分类:编程语言   时间:2021-03-30 13:55:19    阅读次数:0
c++ 虚函数
虚函数 如果用基类指针指向一个衍生类对象,透过基类指针只能调用基类所定义的成员函数。 要实现透过基类指针调用子类成员函数(多态),需要使用 virtual 关键字。 MFC 有两个十分十分重要的虚 拟函数:与document 有关的Serialize 函数和与view 有关的OnDraw 函数 动态 ...
分类:编程语言   时间:2021-03-30 13:38:49    阅读次数:0
idea使用技巧之检查未使用的类、变量、方法
1.选择Analyze——》Run Inspection by Name...或者使用快捷键Ctrl+Alt+Shift+I 2.在弹框中输入:unused declaration 3.弹框默认选择 4.等待下方读条结束会自动弹出Inspection Results弹窗 5.对没有用到的方法和变量提 ...
分类:其他好文   时间:2021-03-30 13:30:44    阅读次数:0
0423. Reconstruct Original Digits from English (M)
Reconstruct Original Digits from English (M) 题目 Given a non-empty string containing an out-of-order English representation of digits 0-9, output the d ...
分类:其他好文   时间:2021-03-30 13:01:57    阅读次数:0
Spring 自动装配
很明显之前学的方式 手动配置还是不够方便。就需要我们去学习Spring的自动装配! #autowire="byName" 定义几个简单类 package Demo; public class Cat { public void shout(){ System.out.println("miao~") ...
分类:编程语言   时间:2021-03-29 12:52:06    阅读次数:0
Java之多态
多态的概述 什么是多态 同一个对象,在不同时刻表现出来的不同形态 多态的前提 1.要有继承或实现关系 2.要有方法的重写 3.要有父类引用指向子类对象 代码演示 class Animal { public void eat() { System.out.println("动物吃饭"); } } cl ...
分类:编程语言   时间:2021-03-29 12:34:46    阅读次数:0
36245条   上一页 1 ... 34 35 36 37 38 ... 3625 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!