前言: 早上上班按照正常流程打开Visual Studio,调试本地项目,然后奇怪的是一直提示未加载mscorlib.pdb,导致项目无法正常运行,经过一番折腾最后解决了这个突如其来的bug! 问题重现: 解决方案: 点击调试=>选项=>调试=>常规点击启用我的代码! ...
分类:
数据库 时间:
2020-04-20 13:28:22
阅读次数:
217
1.以管理员身份打开 Developer Command Prompt for VS 2019(vs2019开发人员命令提示符)2.定位到你的vs2019的安装目录例:C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\C ...
分类:
其他好文 时间:
2020-04-20 11:45:52
阅读次数:
339
@[TOC] 列表(List) 类似于C语言中的“数组”,将多个相同类型数据存储在一个变量中,“增删查改”的时候使用下标的方式进行引用 下标从“0”开始的\ "查" name[0] 只取第一个元素 name[0:3] 取第一个到第3个元素,不包括下标为3个 name[1:] 从下标为1的元素取到最后 ...
分类:
编程语言 时间:
2020-04-19 22:25:18
阅读次数:
88
Chapter 5:Tricky Basics 第5章 技巧性基础知识 This chapter covers some further basic aspects of templates that are relevant to the practical use of templates: a ...
分类:
其他好文 时间:
2020-04-19 14:51:43
阅读次数:
77
[root@Private python script] cat square.py ...
分类:
编程语言 时间:
2020-04-19 12:32:24
阅读次数:
65
HBase的前提条件: JDK SSH Hadoop JDK:Hadoop和JDK运行的环境,他们的守护进程运行在JVM下。HBase支持JDK 1.6以上的版本。比如: jdk-8u161-linux-x64.rpm。 SSH:实现简单的服务器与主机的通信。在集群中,只有启动sshd后,才可以通过 ...
分类:
系统相关 时间:
2020-04-19 00:46:23
阅读次数:
101
文本处理工具和正则表达式1.vi和vimvi:Visual editor,文本编辑器,是 Linux 必备工具之一,功能强大,学习曲线较陡峭,学习难度大vim:VIsual editor iMproved ,和 vi 使用方法一致,但功能更为强大,不是必备软件 vim命令格式:vim [OPTION ...
分类:
系统相关 时间:
2020-04-18 22:33:18
阅读次数:
73
#include<stdio.h> #include<math.h> using namespace std; int main(){ int c1,c2,h,m,s; int c; scanf("%d %d",&c1,&c2); c = (c2-c1); h = c / (3600*100); m ...
分类:
其他好文 时间:
2020-04-18 18:30:34
阅读次数:
55
摘录自: http://cn.linux.vbird.org/linux_basic/0210filepermission.php 查看权限 ls -al total 156 drwxr-x 4 root root 4096 Sep 8 14:06 . drwxr-xr-x 23 root root ...
分类:
系统相关 时间:
2020-04-18 09:43:08
阅读次数:
77
Walkthrough: Creating and Registering a Custom HTTP Module This walkthrough illustrates the basic functionality of a custom HTTP module. An HTTP modul ...
分类:
Web程序 时间:
2020-04-17 15:18:50
阅读次数:
81