自从使用了C++就不再想使用C语言来刷题了,C++便捷的输入输出方式,以及一些STL库函数的使用都要比使用C语言方便的多。但是使用的时候还有一些需要注意的地方,在这篇博客中写一下。(更好的教程可以参看柳神写的那个,我这个主要是写一下自己在算题的过程中一些经常使用,但是还经常容易忘记的进行一些总结) ...
分类:
编程语言 时间:
2020-06-30 22:25:29
阅读次数:
77
0. 下载、创建、运行 1. 下载bee添加到环境变量 2. 下载beego 3. 创建项目 bee new project,这一步之前需要设置GOPATH 4. 运行,bee run 1. MVC 2. 控制器 3. 路由 ...
分类:
Web程序 时间:
2020-06-30 22:13:59
阅读次数:
62
public static void TextWriter(string Msg) { string path = @"D: " + "log.txt"; //文件流 FileStream file = new FileStream(path, FileMode.Append); StreamWri ...
分类:
其他好文 时间:
2020-06-30 20:23:32
阅读次数:
41
华为交换机 在交换机端口上打开端口安全功能,将 MAC 地址绑定到相对应接口中,并在 vlan1 上有效。 [SW1]interface Eth0/0/1 [SW1-Ethernet0/0/1]port-security enable [SW1-Ethernet0/0/1]port-security ...
分类:
系统相关 时间:
2020-06-30 17:42:14
阅读次数:
118
phpunit也有browserTest For newer versions of phpunit, it is just: phpunit --filter methodName path/to/file.php一次运行一个命令, 0--以前的版本: phpunit --filter testS ...
分类:
Web程序 时间:
2020-06-30 17:25:54
阅读次数:
65
一、回顾 1、lvs:四层路由器,四层交换机; 2、lvs-type: a、nat/dr/tun/fullnat b、nat/fullnat:请求和响应报文都经由Director; (1)、nat:仅修改请求报文的目标IP,和端口 (2)、fullnat:修改请求报文的源和目标IP,和目标端口 c、 ...
分类:
系统相关 时间:
2020-06-30 17:09:33
阅读次数:
69
1、准备工作 1、安装 gcc 、vcpkg 等。 2、下载最新的 GDAL 源码。 3、使用 vcpkg 安装第三方库。 ./vcpkg install tiff install sqlite3[tool] ./vcpkg install geos ./vcpkg install curl ./v ...
分类:
系统相关 时间:
2020-06-30 13:00:36
阅读次数:
183
异常: org.springframework.orm.hibernate3.HibernateSystemException: No default constructor for entity Caused by: org.hibernate.InstantiationException: No ...
分类:
其他好文 时间:
2020-06-30 12:50:04
阅读次数:
55
AndroidStudio采用Gradle构建项目。项目中又两个build.gradle文件,一个在最外层的目录中,一个在app目录下。最外层目录的build.gradle//Top-levelbuildfilewhereyoucanaddconfigurationoptionscommontoallsub-projects/modules.buildscript{repositories{goo
分类:
移动开发 时间:
2020-06-30 11:03:23
阅读次数:
99
1、验证码生成代码 import random import string import os.path from io import BytesIO from PIL import Image from PIL import ImageFilter from PIL.ImageDraw impor ...
分类:
其他好文 时间:
2020-06-30 00:54:25
阅读次数:
89