定义和用法 元素可提供有关页面的元信息(meta information),比如针对搜索引擎和更新频度的描述和关键词。 标签位于文档的头部,不包含任何内容。 标签的属性定义了与文档相关联的名称/值对。 name 属性 name 属性提供了名称/值对中的名称。HTML 和 XHTML 标签都没有指定任 ...
分类:
Web程序 时间:
2020-02-04 13:37:22
阅读次数:
130
1. 购买云服务器 因为学生优惠,所以选择了华为云的云服务器ECS和云数据库RDS。 配置分别为: ECS:至强 单核、2GB DDR4、40GB 高I/O HDD、CentOS 7.6 64bit RDS:至强 双核、4GB DDR4、100GB 高I/O HDD、MySQL 5.7.27 每个都 ...
分类:
其他好文 时间:
2020-02-03 22:29:52
阅读次数:
168
"字符串转换整数(atoi)" 题目描述 请你来实现一个 atoi 函数,使其能将字符串转换成整数。 首先,该函数会根据需要丢弃无用的开头空格字符,直到寻找到第一个非空格的字符为止。 当我们寻找到的第一个非空字符为正或者负号时,则将该符号与之后面尽可能多的连续数字组合起来,作为该整数的正负号;假如第 ...
分类:
其他好文 时间:
2020-02-02 15:48:28
阅读次数:
70
题目内容 You are given two non empty linked lists representing two non negative integers. The most significant digit comes first and each of their nodes c ...
分类:
其他好文 时间:
2020-02-02 15:26:42
阅读次数:
87
利用vue写一个简单的音乐播放器,包括功能有歌曲搜索、歌曲播放、歌曲封面、歌曲评论、播放动画、mv播放六个功能。 <template> <div class="wrap"> <!-- 播放器主体区域 --> <div class="play_wrap" id="palyer"> <div class ...
分类:
其他好文 时间:
2020-02-02 10:19:35
阅读次数:
166
epel http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm rpmforge http://pkgs.repoforge.org/rpmforge-release/ (文件pkgs.repoforge. ...
分类:
其他好文 时间:
2020-01-31 21:04:55
阅读次数:
152
def myfont(): name = input("输入你的名字:(only English words) \t") length = len(name) for x in range(0, length): c = name[x] c = c.upper() if (c == "A"): pr ...
分类:
其他好文 时间:
2020-01-31 14:11:02
阅读次数:
69
static void LocalMethod() { Cube(100); void Cube(int x) => Console.WriteLine($"The cube of {x} is {x * x * x}"); } static void GoToDemo() { int i = 1; ...
 ![](https://img2018.cnblogs.com/blog/1853166/202001/18531... ...
分类:
其他好文 时间:
2020-01-26 22:10:58
阅读次数:
73
我们都知道 Kettle 是用 Java 语言开发,并且可以在 JavaScript 里面直接调用 java 类方法。所以有些时候,我们可以自定义一些方法,来供 JavaScript 使用。 本篇文章有参考自: 一、在 java 项目中创建工具类 <! more 在项目中,创建 utils 工具类, ...
分类:
编程语言 时间:
2020-01-25 01:02:43
阅读次数:
125