ScrollView组件常用于轮播图或引导页,那么水平滚动则比较常用 自定义水平的CKScrollView.js组件类 1 import React,{Component} from 'react'; 2 import { 3 View, 4 Text, 5 StyleSheet, 6 Scroll ...
分类:
其他好文 时间:
2021-01-12 11:05:38
阅读次数:
0
1.创建自定义CKButton.js组件类 1 import React,{Component} from 'react'; 2 import { 3 View, 4 StyleSheet, 5 Button, 6 TouchableOpacity, 7 Text 8 } from 'react-n ...
分类:
其他好文 时间:
2021-01-12 10:48:48
阅读次数:
0
一、functional pattern 测试覆盖率不够,用functional pattern做为补充。 functional pattern保存在EVCD文件里: TEST-T> set_patterns -external -strobe .. filename.evcd 怎么生成EVCD文件 ...
分类:
其他好文 时间:
2021-01-11 11:05:53
阅读次数:
0
JDK的String类有一个intern方法: public native String intern(); 方法的注释: /** * Returns a canonical representation for the string object. * <p> * A pool of string ...
分类:
其他好文 时间:
2021-01-11 10:45:52
阅读次数:
0
单元测试检查点: @RunWith(SpringRunner.class) @SpringBootTest @Autowired @Test @Transactional @RunWith(SpringRunner.class) @SpringBootTest public class Test { ...
分类:
编程语言 时间:
2021-01-08 11:42:01
阅读次数:
0
abstract的method 不可以是static的,因为抽象的方法是要被子类实现的,而static与子类扯不上关系! native方法表示该方法要用另外一种依赖平台的编程语言实现的,不存在着被子类实现的问题,所以,它也不能是抽象的,不能与abstract混用。例如,FileOutputSteam ...
分类:
其他好文 时间:
2021-01-08 11:35:27
阅读次数:
0
1.Kubenets与minikube简介 Kubernetes(常简称为K8s)是用于自动部署、扩展和管理「容器化(containerized)应用程序」的开源系统。该系统由Google设计并捐赠给Cloud Native Computing Foundation(今属Linux基金会)来使用。它 ...
分类:
Web程序 时间:
2021-01-07 12:32:30
阅读次数:
0
提示:Unable to start adb server: error: protocol fault (couldn't read status): Connection reset by peer问题原因:大多数情况是5037端口被占用。5037为adb默认端口。解决办法:查看哪个程序占用了a ...
分类:
其他好文 时间:
2021-01-06 12:06:11
阅读次数:
0
windows 电脑 执行 react-native 项目,报错如下: error Invalid regular expression: /(.*\\__fixtures__\\.*|node_modules[\\\]react[\\\]dist[\\\].*|website\\node_modu ...
分类:
Web程序 时间:
2021-01-06 12:03:27
阅读次数:
0
JS function 是函数也是对象, 浅谈原型链 JS 唯一支持的继承方式是通过原型链继承, 理解好原型链非常重要, 我记录下我的理解 1. 前言 new 出来的实例有 _proto_ 属性, 并且指向其构造函数的 prototype 对象 function Person(){} const p ...
分类:
Web程序 时间:
2021-01-05 11:43:54
阅读次数:
0