码迷,mamicode.com
首页 >  
搜索关键字:one    ( 27922个结果
c++知识点4
1.空函数是不占字节的,还有就是typedef只是一个声明而已,也不占字节;枚举类型是用int型实现的,故占4个字节;联合类型中字节数是12+4(有一位是'\0') 2.调用无参构造函数即编译器默认生成的构造函数时,直接定义一个对象,不能在后面加一个括号,否则就为函数的定义,会产生错误。 3.#im ...
分类:编程语言   时间:2020-07-18 15:49:25    阅读次数:61
History 4 : China and Buddhism
China and Buddhism By far the most important gift that China received from India was neither cotton, nor sugar, nor the knowledge of saltpeter, but a ...
分类:其他好文   时间:2020-07-18 15:35:38    阅读次数:83
pytz库处理时区转换
navie时间和aware时间:什么是navie时间?什么是aware时间?1. navie时间:不知道自己的时间表示的是哪个时区的。也就是不知道自己几斤几两。比较幼稚。2. aware时间:知道自己的时间表示的是哪个时区的。也就是比较清醒。pytz库:专门用来处理时区的库。这个库会经常更新一些时区 ...
分类:其他好文   时间:2020-07-18 13:51:03    阅读次数:99
笨办法学python3练习代码ex18.py
1 #命名、变量、代码、函数 2 #this one is like your scripts with argv 3 def print_two(*args): 4 arg1, arg2 = args #将参数解包 5 print(f"arg1: {arg1}, arg2: {arg2}") 6 ...
分类:编程语言   时间:2020-07-18 13:33:56    阅读次数:109
轮播图带广告词条随图片滚动
css样式: <style> * { padding: 0; margin: 0; font-family: "微软雅黑"; font-size: 14px;} ul,li { list-style: none; } a { text-decoration: none; color: black; ...
分类:其他好文   时间:2020-07-18 11:26:07    阅读次数:91
hdu 4283You Are the One
The TV shows such as You Are the One has been very popular. In order to meet the need of boys who are still single, TJUT hold the show itself. The sho ...
分类:其他好文   时间:2020-07-18 00:42:55    阅读次数:89
Rochambeau POJ - 2912
N children are playing Rochambeau (scissors-rock-cloth) game with you. One of them is the judge. The rest children are divided into three groups (it i ...
分类:其他好文   时间:2020-07-18 00:42:12    阅读次数:76
Networkx算法Cuts
来自官方文档Networkx Reference Release2.4 1、boundary_expansion(G,S) 返回值:切割边数/S子集节点数 G = nx.barbell_graph(4,0) #生成杠铃图 S ={0,1,2,3,4} X=nx.boundary_expansion( ...
分类:编程语言   时间:2020-07-18 00:40:52    阅读次数:84
Nova服务运维
Nova服务运维 Nova中的安全组只是对进入虚拟机的流量加以控制,对虚拟机外出流量没有加以限制 (1)常用的安全组命令。 # nova secgroup-create 功能:创建安全组。 创建一个名为test的安全组,描述为'test the nova command about the rule ...
分类:其他好文   时间:2020-07-17 19:53:59    阅读次数:163
springboot~DTO字符字段与日期字段的转换问题
不会自动转换string与date 主要是这个意思,前端提交的JSON里,日期是一个字符串,而对应后端的实体里,它是一个Date的日期,这两个在默认情况下是不能自动转换的,我们先看一下实体 实体 public class UserDTO { private String name; private ...
分类:编程语言   时间:2020-07-17 16:07:35    阅读次数:65
27922条   上一页 1 ... 74 75 76 77 78 ... 2793 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!