搜索结果
查询Tags标签: name,共有 9668条记录-
prototype 用法
Array.prototype.phpfind = function(conditionFunc) {console.log(conditionFunc,conditionFunc)for (var i = 0; i < this.length; i++) {//console.log(this[i])if (conditionFunc(this[i])) {// return this[i]return i}} }var arr = [{name:test1, age: 1},{name:…
2022/8/25 6:24:18 人评论 次浏览 -
JSON解析器java对象转换json注解
JSON解析器java对象转换json注解2.注解: 1. @sonIgnore :排除属性。 2. @sonFormat :属性值得格式化 @sonFormat(pattern = "yyyy-MM-dd" ) 复杂java对象转换list:数组map:对象格式一致package pojo;import com.fasterxml.jackson.annotation.J…
2022/8/25 1:25:34 人评论 次浏览 -
python02-数据类型
身份验证is;type(name) is int 返回值为true或false、is not; type(name) is not int 返回值为true或false三元运算d = a if a > 15 else b d = 值1 if 条件A else值2如果条件A成立,就取左边的值1,否则取值2数据类型-列表extend 合并 n1 = ["bob","a…
2022/8/25 1:25:30 人评论 次浏览 -
C/C++中利用汇编incbin来包含二进制文件
https://gist.github.com/mmozeiko/ed9655cf50341553d282#include <stdio.h>#define STR2(x) #x #define STR(x) STR2(x)// this aligns start address to 16 and terminates byte array with explict 0 // which is not really needed, feel free to change it to …
2022/8/25 1:24:20 人评论 次浏览 -
常用类.System
System系统类,主要用于获取系统的属性数据和其他方法,构造方法私有的方法名说明static void arraycopy(); 复制数组static long currentTimeMillis(); 获取当前系统时间,返回的是毫秒值static void gc(); 建议jvm赶快启动垃圾回收器回收垃圾static void exit(int statu…
2022/8/24 23:26:59 人评论 次浏览 -
atools -> config -> AutoBean
AutoBean类文件package com.example.demo.atools.config;import org.springframework.beans.BeansException; import org.springframework.context.ApplicationContext; import org.springframework.context.ApplicationContextAware; import org.springframework.context…
2022/8/24 23:25:13 人评论 次浏览 -
watch 监听ref的复杂类型
<template><div>本人 : {{refWatch.name}} - {{refWatch.age}}朋友 : {{refWatch.firend.name}}同桌 : {{refWatch.firend.hang.name1}} - {{refWatch.firend.hang.name2}}<br><button @click="refWatch.name = 吴宇腾1号 ,refWatch.age++"…
2022/8/24 23:25:11 人评论 次浏览 -
实例变量和类变量
实例变量class Hello{ String name="12"; int age; public static void main(String[] args){ Hello hello = new Hello(); System.out.println(hello.name); }} 类变量class Hello{ static String name="12";…
2022/8/24 23:24:50 人评论 次浏览 -
基于StatefulSet控制器运行MySQL一主多从
1、下载相关镜像并上传到harbor私有仓库拉取官网镜像nerdctl pull registry.cn-hangzhou.aliyuncs.com/hxpdocker/xtrabackup:1.0 nerdctl pull mysql:5.7.36对镜像tag标签重打,方便推送到自己的harbor私有仓库 nerdctl tag registry.cn-hangzhou.aliyuncs.com/hxpdocker…
2022/8/24 2:24:36 人评论 次浏览 -
maven工程(二)运行环境修改和获取mysql数据库数据
运行环境修改 可以加上这个进行定义,你tomcat运行的端口<build><plugins><plugin><!-- https://mvnrepository.com/artifact/org.apache.tomcat.maven/tomcat7-maven-plugin --><groupId>org.apache.tomcat.maven</groupId><arti…
2022/8/24 2:23:07 人评论 次浏览 -
prometheus监控redis-cluster集群
信息 prometheus v2.1.0 redis_exporter v1.6.1 redis cluster 5.0 3 mater 3 slave prometheus.yml 在prometheus.yml添加两个job,redis_exporter和redis_exporter_targets,redis_exporter_targets才是真正监控redis集群的。## config for scraping the exporter itsel…
2022/8/24 2:22:52 人评论 次浏览 -
python函数及内置函数__init__自己的见解!!
函数的定义方式(常见的三种) 第一种,无参数 def hanshu():print("hanshu") hanshu() #调用函数 第二种,有参数,并把值传递给两个参数 def hanshu(a,b):print(a+b) hanshu(5,6) #调用并传递值到函数变量a,b中 第三种,直接在函数的参数中定义好值。 de…
2022/8/24 1:24:22 人评论 次浏览 -
mybatis-一对多、多对一
多对一: 多个学生对一个老师 就是 多对一 对学生:多个学生关联一个老师 一对多: 一个老师 对 多个学生 对老师而言:一个老师 有 很多学生 SQL #创建teachaer表CREATE TABLE `teacher`(`id` INT(10) NOT NULL,`name` VARCHAR(30) DEFAULT NULL,PRIMARY KEY (`id`)) DEF…
2022/8/23 23:25:42 人评论 次浏览 -
面向对象
面向对象编程的本质:以类的方式组织代码,以对象的形式组织(封装)数据 对象是具体的事务,类是抽象的break和 return 的区别break:跳出switch,结束循环return:结束方法,返回一个结果static修饰的静态方法和类一起加载,非静态方法在类实例化之后才存在,静态方法无…
2022/8/23 23:23:13 人评论 次浏览 -
ecahrts中国地图,城市动态发光点,涟漪发波点
var data = [{name: 海门, value: 9},{name: 鄂尔多斯, value: 12},{name: 招远, value: 12},{name: 舟山, value: 12},{name: 齐齐哈尔, value: 14},{name: 盐城, value: 15},{name: 赤峰, value: 16},{name: 青岛, value: 18},{name: 乳山, value: 18},{name: 金昌, val…
2022/8/23 23:23:11 人评论 次浏览