码迷,mamicode.com
首页 >  
搜索关键字:room    ( 611个结果
第8章 函数
使用def定义函数def greet_user(username): """显示简单的问候语"""#文档字符串,描述了函数是用来做什么的Python使用它们来生成有关程序中函数的文档 print("Hello, " + username.title() + "!") greet_user('jess ...
分类:其他好文   时间:2020-02-01 23:24:07    阅读次数:86
Room----Android数据库(SQLite)
1.要想使用Room首先需要在build.grade中添加依赖 1 dependencies { 2 def room_version = "2.2.2" 3 4 implementation "androidx.room:room-runtime:$room_version" 5 annotati ...
分类:移动开发   时间:2020-02-01 16:38:45    阅读次数:110
hdu1312 Red and Black
"题目链接" Problem Description There is a rectangular room, covered with square tiles. Each tile is colored either red or black. A man is standing on a bl ...
分类:其他好文   时间:2020-02-01 12:47:27    阅读次数:85
poj-3126 Prime Path
The ministers of the cabinet were quite upset by the message from the Chief of Security stating that they would all have to change the four-digit room ...
分类:其他好文   时间:2020-01-27 17:32:06    阅读次数:56
DFS/BFS-A - Red and Black
A - Red and Black There is a rectangular room, covered with square tiles. Each tile is colored either red or black. A man is standing on a black tile. ...
分类:其他好文   时间:2020-01-23 13:54:42    阅读次数:86
Unity_Dungeonize 随机生成迷宫
本文对随机生成迷宫的实现思路进行记录,其作用在于为游戏过程提供随机性以及节省开发周期,下面是Dungeonize的结构 随机迷宫的生成主要包括几个阶段 1.生成房间体结构,为墙体,自定义房间,自定义物体生成平台 1 for (var i = 0; i < room_count; i++) { 2 R ...
分类:编程语言   时间:2020-01-18 14:26:41    阅读次数:83
Android Studio 之 ViewModel (转)
ViewModel 是 JetPack 类库中的一个功能,可以保存控件的状态 ,在整个Activity 生命周期中,状态不会失效 如屏幕翻转时,状态可保留,不会失效! 与 LiveData 配合使用! 配合 Room 进行 Sqlite 操作数据库 新建 ViewModel 类,在MainActiv ...
分类:移动开发   时间:2020-01-17 23:13:41    阅读次数:116
如何在父页面内触发iframe的元素
父页面的iframe <iframe src="{{ url_for('room_info.person_open_record', resiId =resiId) }}" style="width: 100%;" id="face_record"></iframe> iframe页面的点击的cla ...
分类:其他好文   时间:2019-12-23 18:30:29    阅读次数:76
静态static
概述:一旦用了static关键字成员内容就不属于该对象而是属于本类且所有本类对象共享一份 public class Static2 { static String room; static { System.out.println("静态代码块执行"); } public Static2(){ Sy ...
分类:其他好文   时间:2019-12-17 00:38:01    阅读次数:105
signalR 推送 前端部分
//消息初始化 MsgInit() { let that = this; hubs.init(); //需要指定服务端的ip $.connection.hub.url = `${mapUrl.SIGNALR_URL}/signalr`; var chat = $.connection.GeoHub; ...
分类:其他好文   时间:2019-12-16 13:04:10    阅读次数:117
611条   上一页 1 ... 4 5 6 7 8 ... 62 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!