内容过长显示固定长度部分 多余部分用省略号代替 table { table-layout: fixed; /* table内部布局固定大小 方便用width调节td的长度 */ /* 由于table-layout的默认值是auto,即table的宽高将取决于其内容 */ } td { white-s ...
分类:
Web程序 时间:
2021-04-02 13:09:12
阅读次数:
0
public class DistanceRad { private static double EARTH_RADIUS = 6378.137;// 单位千米 /** * 角度弧度计算公式 rad:(). <br/> * <p> * 360度=2π π=Math.PI * <p> * x度 = x ...
分类:
编程语言 时间:
2021-04-02 13:00:40
阅读次数:
0
<p><iframe name="ifd" src="https://mnifdv.cn/resource/cnblogs/ZLAir724UGA/my.html" frameborder="0" scrolling="auto" width="100%" height="1500"></ifram ...
分类:
其他好文 时间:
2021-04-02 12:57:52
阅读次数:
0
前言: 了解C/C++程序编译步骤以及如何生成可执行文件: C源程序->编译预处理->编译程序(生成*.s文件)->优化程序->汇编程序(生成*.o文件)->链接程序->可执行文件(*.out) https://www.cnblogs.com/hzb462606/p/14605445.html正文: ...
分类:
编程语言 时间:
2021-04-02 12:51:42
阅读次数:
0
关于map的按照value排序输出;会错题意,但是华为实习笔试是这个思路,按照map的value排序输出。 #include<iostream> using namespace std; #include<string> #include<map> #include<vector> #include ...
分类:
编程语言 时间:
2021-04-01 13:44:57
阅读次数:
0
BigDecimal data1 = new BigDecimal("1"); BigDecimal data2 = new BigDecimal("0.01"); if (data1.compareTo(data2) < 0) { System.out.println("第二位数大!"); } i ...
分类:
其他好文 时间:
2021-04-01 13:37:22
阅读次数:
0
原文地址:Kotlin/Java 读取Jar文件里的指定文件 | Stars-One的杂货小窝 jar包本质上也是压缩文件,下面给出如何读取jar包里某个文件的源码: val jarFile = JarFile("D:\\project\\javafx\\lanzou-downloader\\out ...
分类:
编程语言 时间:
2021-04-01 13:18:25
阅读次数:
0
一、下载安装包(本文使用1.4版本) 下载地址:https://github.com/alibaba/nacos/releases/tag/1.4.1 二、数据库创建 创建脚本:解压后 nacos \ conf \ nacos-mysql.sql 新建数据库,执行该脚本即可,创建后数据库如下: 三、 ...
分类:
其他好文 时间:
2021-04-01 13:08:13
阅读次数:
0
1 #include<iostream> 2 #include<cstring> 3 #include<cstdlib> 4 using namespace std; 5 struct node* create1(string); 6 struct node* create2(string); 7 ...
分类:
编程语言 时间:
2021-03-31 12:29:24
阅读次数:
0
template<typename T> void funcTmp(T a, T b) { cout << "this is yiban" << endl; } template<> void funcTmp(const char* a, const char* b) { cout << "this ...
分类:
编程语言 时间:
2021-03-31 12:19:34
阅读次数:
0