码迷,mamicode.com
首页 >  
搜索关键字:eclipse color theme    ( 205641个结果
Door Frames CodeForces - 910B
题目 Petya has equal wooden bars of length n. He wants to make a frame for two equal doors. Each frame has two vertical (left and right) sides of length ...
分类:其他好文   时间:2020-11-30 16:00:25    阅读次数:6
django REST框架——模型序列化器,超链接模型序列化器
官方文档:https://www.django-rest-framework.org/tutorial/1-serialization/ 序列化 1.安装第三方包并注册到app pip install djangorestframework 注册app: INSTALLED_APPS = [ ... ...
分类:其他好文   时间:2020-11-30 15:22:24    阅读次数:2
【leetcode】1534. 统计好三元组
int countGoodTriplets(int* arr, int arrSize, int a, int b, int c){ int i, j, k, cnt=0; for(i=0; i<arrSize-2; i++){ for(j=i+1; j<arrSize-1; j++){ if(ab ...
分类:其他好文   时间:2020-11-27 11:50:07    阅读次数:24
swiper修改分页器样式
css中,在.swiper-pagination-bullet-active{}中修改就ok。 默认样式为: .swiper-pagination-bullet-active { background-color: #e8561a; width: 20px; border-radius: 20px; ...
分类:其他好文   时间:2020-11-27 11:33:41    阅读次数:7
判断json对象时JSONArray还是JSONObject
判断json对象时JSONArray还是JSONObject 使用的fastjson Object object = js.get("guid"); if (object instanceof JSONArray) { System.out.println("JSONArray"); }else{ ...
分类:Web程序   时间:2020-11-27 11:30:51    阅读次数:13
小猫咪
![](https://s4.51cto.com/images/blog/202011/23/af22960b462bc0824bd769723ba95396.jpg?x-oss-process=image/watermark,size_16,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_90,type_ZmFuZ3p
分类:其他好文   时间:2020-11-27 11:12:27    阅读次数:6
Lambda表达式
一、函数式接口 在介绍lambda表达式之前,我们需要了解什么是函数式接口,因为函数式接口是lambda表达式应用最多的地方。 1、函数式接口的定义: 任何接口,如果只包含唯一一个抽象方法,那么它就是一个函数式接口。 对于函数式接口,我们可以通过lambda表达式来创建该接口的对象。 2、函数式接口 ...
分类:其他好文   时间:2020-11-27 10:56:13    阅读次数:5
NPM配置淘宝镜像
临时使用 npm install --registry https://registry.npm.taobao.org 全局使用 npm config set registry https://registry.npm.taobao.org 查看全局配置 npm config get registr ...
分类:其他好文   时间:2020-11-26 15:14:40    阅读次数:6
div中li不换行的解决方案
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.o ...
分类:其他好文   时间:2020-11-26 15:14:19    阅读次数:5
软件模拟spi c语言实现
c语言实现软件spi接口,需要设备有三个IO设置为GPIO功能 ...
分类:编程语言   时间:2020-11-26 15:12:26    阅读次数:8
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!