案例: System.out.println(0.05+0.01); System.out.println(1.0+0.42); System.out.println(4.015*100); System.out.println(123.3/100); 在日常的开发中肯定会接触到价格金钱上的运算,这 ...
分类:
编程语言 时间:
2020-12-31 11:46:16
阅读次数:
0
参考于 https://www.cnblogs.com/axing/archive/2013/06/07/3123123.html 代码 using System; using System.Collections.Generic; using System.ComponentModel; usin ...
1. 关系型数据库介绍 1.1 数据结构模型 数据结构模型主要有: 层次模型 网状结构 关系模型 关系模型:二维关系:row,column 数据库管理系统:DBMS关系:Relational,RDBMS 1.2 RDBMS专业名词 常见的关系型数据库管理系统: MySQL:MySQL,MariaDB ...
分类:
数据库 时间:
2020-12-30 11:09:03
阅读次数:
0
Git工作原理 WorkSpace:本地工作区 Index:暂存区 Repository:仓库区(或本地仓库) Remote:远程仓库 Git命令 git config # 查看配置信息 # --local:仓库级,--global:全局级,--system:系统级 $ git config <-- ...
分类:
其他好文 时间:
2020-12-30 11:01:38
阅读次数:
0
1、Bean 的作用域介绍 我们可以通过XML<bean> 元素中的 scope 属性 或者 @Scope 注解 来设置,例如: XML 中设置作用域:<bean id="" class="" scope="prototype" />注解设置作用域: @Scope("prototype") 或者 @ ...
分类:
编程语言 时间:
2020-12-30 10:58:35
阅读次数:
0
import java.io.*; public class TIME { public static void main(String[] args) { File oldName = new File("路径/test.png"); File newName = new File(System. ...
分类:
移动开发 时间:
2020-12-30 10:46:56
阅读次数:
0
1.使用Marshal类的StructureToPtr与PtrToStructure函数对object与byte数组进行转换 命名空间:System.Runtime.InteropServices /// <summary> /// 将对象转换为byte数组 /// </summary> /// < ...
分类:
编程语言 时间:
2020-12-30 10:46:02
阅读次数:
0
最佳的UI体验——Material Design Material is a design system created by Google to help teams build high-quality digital experiences for Android, iOS, Flutter, ...
分类:
移动开发 时间:
2020-12-30 10:37:29
阅读次数:
0
1、在VS中新建一个类库,名称自己随便取。 2、 在NuGet包中安装 Microsoft.AspNetCore.Mvc.ViewFeatures. 3、在类库中新建一个控制器类。 using System; using System.Collections.Generic; using Syste ...
分类:
Web程序 时间:
2020-12-30 10:27:40
阅读次数:
0
一. 为什么使用spring cloud alibaba 很多人可能会问,有了spring cloud这个微服务的框架,为什么又要使用spring cloud alibaba这个框架了?最重要的原因在于spring cloud中的几乎所有的组件都使用Netflix公司的产品,然后在其基础上做了一层封 ...
分类:
编程语言 时间:
2020-12-30 10:24:54
阅读次数:
0