码迷,mamicode.com
首页 >  
搜索关键字:tom    ( 8124个结果
NoSQL 简介
NoSQL 简介 NoSQL(NoSQL = Not Only SQL ),意即"不仅仅是SQL"。 在现代的计算系统上每天网络上都会产生庞大的数据量。 这些数据有很大一部分是由关系数据库管理系统(RDBMS)来处理。 1970年 E.F.Codd's提出的关系模型的论文 "A relational ...
分类:数据库   时间:2020-08-28 14:28:59    阅读次数:66
左外连接,右外连接
--查询分析器中执行:--建表table1,table2:create table table1(id int,name varchar(10))create table table2(id int,score int)insert into table1 select 1,‘lee‘insert ...
分类:其他好文   时间:2020-08-24 16:59:44    阅读次数:74
C# Protobuf序列化
1 . 创建Protobuf序列化 工具类ProtobufExchang.cs, 需要添加应用protobuf-net.dll 组件 using ProtoBuf;using System;using System.Collections.Generic;using System.IO;using ...
分类:Windows程序   时间:2020-08-24 16:59:11    阅读次数:85
Material Design组件之NavigationView
原文首发于微信公众号:jzman-blog,欢迎关注交流!MaterialDesign系列文章:MaterialDesign组件之FloatingActionButtonMaterialDesign组件之AppBarLayoutMaterialDesign组件之CollapsingToolbarLayout今天来看一下NavigationView的使用,NavigationView是一个标准的导航
分类:其他好文   时间:2020-08-24 16:53:41    阅读次数:55
Python3--条件判断与循环控制
1.条件判断与循环控制 语句关键字 if、 else、 elif 、 # 伊洛Yiluo # https://yiluotalk.com/ >>> password = 123456 >>> input_password = int(input('Please input password to l ...
分类:编程语言   时间:2020-08-24 15:11:18    阅读次数:55
浅谈XML和JSON的区别
前言 今天做接口对接时,发现对方竟然是通过XML进行数据传输,当时冒出的第一个想法就是:WTF,这都什么年代了,还在用XML,是来搞笑的吧,JSON它不香吗? 想法归想法,但对接还是要完成的是吧?然后看了下开发文档时间(2013年),那还是可以理解的嘛!(图片) 之前对XML一知半解,现在要用到了, ...
分类:Web程序   时间:2020-08-21 16:41:12    阅读次数:116
CSS知识点(三)
知识点一:外边距 1、回顾盒子模型包含:内容、内边距、边框、外边距 2、定义:盒子的边框与其他元素或者浏览器边缘之间的距离 3、使用: ① 上外边距 margin-top: 100px; ② 左外边距 margin-left: 80px; ③ 下外边距 margin-bottom: 50px; ④ ...
分类:Web程序   时间:2020-08-18 15:37:29    阅读次数:108
Springboot集成jsp 以及部署服务器问题
1.在application配置文件里面加入配置:spring:mvc:view:prefix:/jsp/suffix:.jsp2.手动在src->main->下面创建webapp文件夹3.在Springboot启动类加入如下代码:@BeanpublicInternalResourceViewResolversetupViewResolver(){InternalResourceVie
分类:编程语言   时间:2020-08-17 16:48:25    阅读次数:67
前端入门教程---从0开始手把手教你学习PC端和移动端页面开发第10章有路网PC端主页实战整合
本教程案例在线演示有路网PC端有路网移动端免费配套视频教程免费配套视频教程教程配套源码资源教程配套源码资源制作有路网首页有路网首页布局框架制作划分区域,确定div测量各个区域的宽高使用Flexbox对网页进行布局youlu-whole.css.nav{height:30px;background-color:#f4f4f4;}.search-bar{height:134px;background-
分类:移动开发   时间:2020-08-13 22:22:30    阅读次数:105
如何使用JLabel
Container contentPane = getContentPane(); contentPane.setLayout(new FlowLayout());//布局管理器 JLabel label = new JLable(); contentPane.add(label); 修改/设置 l ...
分类:其他好文   时间:2020-08-13 12:26:45    阅读次数:55
8124条   上一页 1 ... 21 22 23 24 25 ... 813 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!