码迷,mamicode.com
首页 >  
搜索关键字:clu    ( 12562个结果
linux查看操作系统命令
一、linux CPU大小 cat /proc/cpuinfo |grep "model name" && cat /proc/cpuinfo |grep "physical id" 说明:Linux下可以在/proc/cpuinfo中看到每个cpu的详细信息。但是对于双核的cpu,在cpuinfo ...
分类:系统相关   时间:2021-01-25 10:49:16    阅读次数:0
js多条件判断的简写
// 非简写 let x = 'a' if (x 'a' || x 'b' || x 'c' || x 'd') { console.log(11111); } // 简写 let arr = ['a', 'b', 'c', 'd'] if (arr.includes(x)) { console.l ...
分类:Web程序   时间:2021-01-22 11:43:05    阅读次数:0
扩展KMP模板
概述 参考资料: 刘雅琼PPT讲解kuangbin的博客 给出模板串A和子串B,长度分别为lenAlenA和lenBlenB,要求在线性时间内,对于每个A[i]A[i](0<=i<lenA)(0<=i<lenA) 求出A[i..lenA?1]A[i..lenA?1] 与B的最长公共前缀长度,记为ex ...
分类:其他好文   时间:2021-01-21 10:42:14    阅读次数:0
C语言丨运算符号&的三种用法(有示例代码)
&: 在C语言中有两种意思,一种是取地址符,是单目运算符;另一种是位运算符,表示“按位与”,是双目运算符。 1.用于指针赋值 #include<stdio.h> int main() { int a = 2; int*b;//定义一个整形指针 b = &a;//给指针赋值,使指针指向a的地址 pri ...
分类:编程语言   时间:2021-01-19 11:59:40    阅读次数:0
第一个Windows实例程序
1、实现弹出如下样式的提示框: 2、实现弹出的字符串内容通过exe参数传进去,例如: #include <Windows.h> #include <tchar.h> int WINAPI _tWinMain(HINSTANCE hInstance, HINSTANCE hPreInstance, L ...
分类:Windows程序   时间:2021-01-18 11:43:09    阅读次数:0
C语言 处理无符号标记的OJ题目输入
#include<stdio.h> int main() { int n, m; while (scanf("%d%d", &n, &m) ==2) //(scanf("%d%d",&n,&m)!=EOF); { printf("m+n=%d\n", m + n); } return 0; ...
分类:编程语言   时间:2021-01-18 11:23:41    阅读次数:0
C++STL——Algorithms
通常在C或C++的编程过程中可以使用头文件#inlcude<algorithms>来使用在其他标准库中的一些相关函数,例如最近我在使用的——快排。 快排函数qsort位于#include<stdlib.h>标准函数库中,但是可以使用头指针#inlcude<algorithms>直接调用快排函数而不用 ...
分类:编程语言   时间:2021-01-18 11:20:41    阅读次数:0
SpringCloud 和 SpringBoot 和Spring Cloud alibaba 版本冲突 导致 服务发现 服务注册 服务调用时报错
一丶错误一 一丶错误信息 org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'memberController': Unsatisfied dependenc ...
分类:编程语言   时间:2021-01-13 11:12:42    阅读次数:0
Oracle RAC 11.2.0.3.0 Grid打补丁(clusterware组件GI)打补丁 注意事项
1:必须以root身份-unlock解锁 grid的相关文件的权限锁定 --## grid 用户--## 解锁${ORACLE_HOME}/crs/install/rootcrs.pl -unlock --## 加锁${ORACLE_HOME}/crs/install/rootcrs.pl -pat ...
分类:数据库   时间:2021-01-13 10:53:31    阅读次数:0
Maven配置资源过滤
<build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includ ...
分类:其他好文   时间:2021-01-12 11:11:17    阅读次数:0
12562条   上一页 1 ... 17 18 19 20 21 ... 1257 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!