码迷,mamicode.com
首页 >  
搜索关键字:b. mr. kitayutas col    ( 37987个结果
关于split切割的几种情况
public class splitTest { public static void main(String[] args) { String a = "@123"; String b = "123@"; String c = "3@@@"; String[] aArr = a.split("@" ...
分类:其他好文   时间:2021-03-01 13:34:57    阅读次数:0
MT7628NN的GPIO复用控制
版本:Openwrt19.07 芯片:MT7268NN 1、在源码 /target/linux/rampis/dts目录中,打开 mt7628an.dtsi 查看注册复用的GPIO gpio: gpio@600 { compatible = "mediatek,mt7621-gpio"; reg = ...
分类:其他好文   时间:2021-03-01 13:13:23    阅读次数:0
第六章?Web基础之http协议
1、Http协议介绍 1、Http协议介绍 HTTP 全称:Hyper Text Transfer Protocol 中文名:超文本传输协议 什么是超文本 什么是超文本 包含有超链接(Link)和各种多媒体元素标记(Markup)的文本。这些超文本文件彼此链接,形成网状(Web),因此又被称为网页( ...
分类:Web程序   时间:2021-03-01 13:07:20    阅读次数:0
【electron】解包 asar
//全局安装 asar npm install asar -g //解包 asar e app.asar 文件夹 ...
分类:其他好文   时间:2021-02-27 13:30:05    阅读次数:0
顺序存储二叉树
package com.dai.tree; public class ArrBinaryTreeDemo { public static void main(String[] args) { // TODO Auto-generated method stub int[] arr = {1,2,3, ...
分类:其他好文   时间:2021-02-27 13:26:43    阅读次数:0
laravel报Target class [CustomController] does not exist.
在项目里找\app\Providers\RouteServiceProvider.php这个文件 然后找protected $namespace = 'App\\Http\\Controllers';这行代码 没有找到就加在class RouteServiceProvider extends Ser ...
分类:其他好文   时间:2021-02-27 13:15:07    阅读次数:0
js a href 循环下载文件只能下载10个或者固定数目的问题
在web前端项目中,很多地方的下载单张图片/文件都可以用<a href="/images/logo.png" download="文件名">来下载指定文件 遇到的问题: 在下载多个文件的时候 使用for 循环来触发 a href download //for循环来触发a href 下载文件 for( ...
分类:Web程序   时间:2021-02-27 13:12:28    阅读次数:0
class类反射的用法--getattr()
aa="test1" class A: def test1(self): print("test1") def test2(self): print("test2") def test3(self): print("test3") a=A() func=getattr(a,aa) func() #t ...
分类:其他好文   时间:2021-02-27 12:58:13    阅读次数:0
python中创建列表、元组、字符串、字典
1、 >>> a = ["aaa","bbb","ccc"] ## 列表,中括号,逗号 >>> type(a) <class 'list'> >>> b = ("aaa","bbb","ccc") ## 元组,小括号,逗号 >>> type(b) <class 'tuple'> >>> c = "a ...
分类:编程语言   时间:2021-02-26 13:17:16    阅读次数:0
Lesson 6 smash-and-grab
The expensive shops in a famous arcade near Piccadilly were just opening. At this time of the morning, the arcade was almost empty. Mr. Taylor, the ow ...
分类:其他好文   时间:2021-02-26 13:05:25    阅读次数:0
37987条   上一页 1 ... 52 53 54 55 56 ... 3799 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!