Easter79 Easter79
2年前
springCloud 搭建eureka服务之天坑
这里我是采用gradle来管理jar包的。1、使用idea创建一个gradle项目。2、编辑settings.gradle文件rootProject.name'jtm'//include'jtm_core'//include'jtm_sys'//include'jtm_eureka'
Wesley13 Wesley13
2年前
vs关于_CRT_SECURE_NO_WARNINGS警告说明
在VS中调用strcpy、strcat等函数时会提示\_CRT\_SECURE\_NO\_WARNINGS警告,原因是这些函数不安全,可能会造成内存泄露等。比如:1:include<stdio.h2:include<stdlib.h3:include<string.h4:
Stella981 Stella981
2年前
Pthreads 信号量,路障,条件变量
▶使用信号量来进行线程间信息传递●代码1include<stdio.h2include<pthread.h3include<semaphore.h4pragmacomment(lib,"pthreadVC2.lib")56constint
Stella981 Stella981
2年前
Redhat 6 升级 openssl
本文涉及rpm源码包下载地址:http://mirrors.163.com/centos/6/os/x86\_64/Packages安装之前配置环境变量/etc/profile增加以下几行exportC_INCLUDE_PATH/usr/local/include:$C_INCLUDE_PATHexportLD_LIBRA
Stella981 Stella981
2年前
Apache配置,使HTML中可以include其它页面
<Directory/OptionsFollowSymLinksAllowOverrideNone</Directory<DirectoryD:/wwwAddTypetext/html.shtml.html.htmAddOutputFilter
Stella981 Stella981
2年前
C++ Map运用实例
CMap运用实例!复制代码(https://common.cnblogs.com/images/copycode.gif)include<mapinclude<string\include<iostreaminclude<iomanipusingnamespacestd;intmain(){
Wesley13 Wesley13
2年前
C++——Linux——Hello World!
include  //include位置:/usr/includeincludeusingnamespacestd;intmain(){cout<<"HelloWorld"<     return0;}gotesttest.cpp//用ggcc编译会出
Stella981 Stella981
2年前
OpenCV 2.3.1图像文件的读入和显示
1.C语言版本basedonOpenCV2.3.1include"stdafx.h"include<stringinclude<opencv2\opencv.hppusingnamespacecv;u
Stella981 Stella981
2年前
PAT A1015Reversible Primes(可逆素数)
主要考察了判断一个10进制数是否为素数(isZS(intss))和怎么求一个十进制数的n进制数rec(intn,intm)代码:1include<cstdio2include<algorithm3include<iostream4include<string5
Wesley13 Wesley13
2年前
137.CPP自带异常
1include<iostream2include<exception3usingnamespacestd;45//继承自带的异常6classsizeerror:publicexception7{8public:9