码迷,mamicode.com
首页 >  
搜索关键字:character    ( 4920个结果
常用类
# 基本数据类 基本数据类型都在java.lang包中有Byte、Integer、Short、Long、Float、Double、Character 构造 直接将对应类型的付给对象即可用数据类型+Value获得值 Character 类 public static boolean isDigit(c ...
分类:其他好文   时间:2020-03-18 17:04:07    阅读次数:49
392. Is Subsequence
Given a string s and a string t, check if s is subsequence of t. You may assume that there is only lower case English letters in both s and t. t is po ...
分类:其他好文   时间:2020-03-18 11:13:53    阅读次数:47
SyntaxError: unexpected character after line continuation character
SyntaxError: unexpected character after line continuation character原创梨花?酱~ 最后发布于2019-01-05 14:37:48 阅读数 11683 收藏展开待解决问题:在运行.py文件时报错SyntaxError: unexpe ...
分类:其他好文   时间:2020-03-17 19:27:42    阅读次数:107
sonarqube配置全指南,集成阿里巴巴p3c规范
环境准备 内置数据库 Sonar安装成功后,默认内置H2数据库,用于记录单次的扫描结果,对同一个project重复扫码,会覆盖之前的扫描记录,所以H2 数据库只应用于测试,不可以用于生产环境,那如果你是想玩玩,不想长期扫描你的项目,可以不必配置数据库 自定义数据库: Oracle SQL Serve ...
分类:其他好文   时间:2020-03-17 19:19:12    阅读次数:61
个人代码规范
代码规范制定 (一)缩进 1.任何运算符左右必须加一个空格。 运算符包括赋值运算符=、逻辑运算符&&、加减乘除符号、三目运行符等。 2.缩进采用4个空格,禁止使用tab字符。 如果使用tab缩进,必须设置1个tab为4个空格。IDEA设置tab为4个空格时,请勿勾选Use tab character ...
分类:其他好文   时间:2020-03-16 17:36:59    阅读次数:83
php转换字符串编码 iconv与mb_convert_encoding的区别
PHP判断字符串编码函数mb_detect_encoding总结 iconv — Convert string to requested character encoding(PHP 4 >= 4.0.5, PHP 5) mb_convert_encoding — Convert character ...
分类:Web程序   时间:2020-03-16 14:57:32    阅读次数:69
数字1和字符1
#include <windows.h> #include <stdio.h> int main() { char test_Character = '1'; char test_Digital = '\1'; { printf("test is %d\n", test_Character); pr ...
分类:其他好文   时间:2020-03-15 22:20:45    阅读次数:172
linux mysql中文乱码
1. 创建数据库字符集 2. 创建表字符集 3. 查看字符集 show variables like '%char%'; 4. 修改my.cnf 添加:character_set_server= utf8 参考链接:https://www.cnblogs.com/wangkaihua/p/10165 ...
分类:数据库   时间:2020-03-15 11:33:09    阅读次数:61
Radio
String _character = 'A'; Radio<String>( value: 'A', // 代表的值 groupValue: _character, // 当前radio group选中的值,当该值与value值匹配时则被选中 onChanged: (String newValue ...
分类:其他好文   时间:2020-03-13 15:53:36    阅读次数:68
leetcode 3. Longest Substring Without Repeating Characters (java)
class Solution { public int lengthOfLongestSubstring(String s) { int[] dict = new int[256]; Arrays.fill(dict, -1); int maxLen = 0, start = -1; for (in ...
分类:编程语言   时间:2020-03-12 14:37:50    阅读次数:71
4920条   上一页 1 ... 34 35 36 37 38 ... 492 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!