C# 数据类型与流程控制 1. 数据类型 C#数据类型分为两类:值类型和引用类型 值类型:包括简单类型、枚举类型、结构类型、可空类型 引用类型:包括类、接口、数组、委托。一般把引用类型的变量称为对象。 下文仅介绍部分数据类型 1.1 常量 const double pi = 3.14; 常量是在编译 ...
Trusted Advisor The trusted advisor is an AWS service that evaluates your environment and can provide recommendations for improvement Security improve ...
分类:
其他好文 时间:
2021-05-04 16:11:23
阅读次数:
0
import os # os.mkdir("n1") # 创建目录 # 创建文件 # with open('1.txt',mode='w') as file: # file.write('11111') # os.mknod("n1.txt") # 创建文件,windows上面不支持,linux中支 ...
分类:
编程语言 时间:
2021-05-04 15:43:42
阅读次数:
0
比如,现在有一些图形,需要计算他们的面积,计算面积的方法都不一样,可以这么做 声明一个抽象类 1 //基类 2 abstract class Shape 3 { 4 //抽象方法 计算面积 5 public abstract double ComputerArea(); 6 7 } 声明子类 //子 ...
数据备份要先看看需要导出的对象大小,如果有些日志表跟业务无关占用空间很大,就可以不导出这类表从而增加数据导出的效率。 数据泵确实很好用,但是网上看到的例子总是不是那么全,自己抽空把这些年用到的例子总结了一下,希望能帮到一些道友。 注:如下例子中testUser是用户名testUserPwd是用户密码 ...
分类:
数据库 时间:
2021-05-03 12:08:26
阅读次数:
0
Serverless deployment is a key consideration when starting to write software using Function-as-a-Service services such as AWS Lambda. In the beginning ...
分类:
其他好文 时间:
2021-05-03 11:50:17
阅读次数:
0
关于Teigha的使用记录 因工作需要,实现脱离CAD环境下对DWG图纸的操作,研究Teigha的使用。本文是对研究内容做的记录。目前Teigha网上资料不是很多,还在学习中。我使用的是Teigha 4.0 .net 版本,VS2018环境,.NET Framework 4框架。 Teigha的加载 ...
分类:
其他好文 时间:
2021-04-30 12:11:51
阅读次数:
0
jQ创建元素的方法 1.原生代码 .creatElement('tr')` .innerHTML = '<h1>加油</h1>' document.write('<h1>加油</h1>') 2.jQ代码 .html('加油')//会覆盖 A.append('<p>加油</p>')//不会覆盖,添加到 ...
分类:
Web程序 时间:
2021-04-30 12:04:59
阅读次数:
0
// 安全文件路径,$fileName:完成文件路径 function securityFilePath($fileName,$read_write = '0777'){ $path = dirname($fileName); if(!file_exists($path)){// 判断路径是否存在, ...
分类:
Web程序 时间:
2021-04-29 11:54:35
阅读次数:
0
using System; namespace EventDelegation { /// <summary> /// 事件参数类 /// </summary> public class EventDate : EventArgs { public int eventID; public int a ...