码迷,mamicode.com
首页 >  
搜索关键字:some    ( 6613个结果
Java匿名内部类
public class DemoMain { public static void main(String[] args) { /* 多态 如果接口的实现类或者父类的子类只需要使用唯一的一次 那么这种情况下就可以省略掉这个类的定义 而改为使用匿名内部类 接口名称 对象名 = new 接口名称(){ ...
分类:编程语言   时间:2021-02-20 12:45:21    阅读次数:0
for in 和for of的区别
for in 和for of的区别:https://www.cnblogs.com/zjx304/p/10687017.html 1 遍历数组通常用for循环 ES5的话也可以使用forEach,ES5具有遍历数组功能的还有map、filter、some、every、reduce、reduceRig ...
分类:其他好文   时间:2021-02-16 12:23:46    阅读次数:0
2020 BIT冬训-贪心 G - Voting CodeForces - 749C
Problem Description There are n employees in Alternative Cake Manufacturing (ACM). They are now voting on some very important question and the leading ...
分类:其他好文   时间:2021-02-10 13:08:04    阅读次数:0
2020 BIT冬训-贪心 F - Parallelogram is Back CodeForces - 749B
Problem Description Long time ago Alex created an interesting problem about parallelogram. The input data for this problem contained four integer poin ...
分类:其他好文   时间:2021-02-10 13:02:09    阅读次数:0
gem install rjb (1.6.4) error
An error occurred while installing rjb (1.6.4), and Bundler cannot continue. Make sure that `gem install rjb -v '1.6.4' --source 'https://gems.ruby-ch ...
分类:其他好文   时间:2021-02-10 13:00:46    阅读次数:0
JavaScript 代码技巧mark
分享一些我常用的代码优化技巧,希望对你有帮助。 1. 多表达式多 if 判断 我们可以在数组中存储多个值,并且可以使用数组include方法。 1 // 长 2 if (x 'abc' || x 'def' || x 'ghi' || x 'jkl') { //logic} 3 // 短 4 if ...
分类:编程语言   时间:2021-02-05 10:39:53    阅读次数:0
Circular Sequence UVA - 1584
? Some DNA sequences exist in circular forms as in the following figure, which shows a circular sequence “CGAGTCAGCT”, that is, the last symbol “T” in ...
分类:其他好文   时间:2021-02-01 12:18:46    阅读次数:0
python批量处理邮件:poplib和email快速上手教程
引言 poplib是一个python第三方库,基于它我们可以连接POP3服务器。 email是一个python内置的模块,基于它我们可以管理邮箱中的邮件。 Some Story 我现在需要下载很多邮件的附件。我之前有一份相同功能的代码(点击这里),发布出来之后博客访问量也挺高。然而,当时由于时间原因 ...
分类:编程语言   时间:2021-01-28 12:10:32    阅读次数:0
Error Handling
Error Handling Error handling requires you to acknowledge the possibility of an error and take some action before your code crashes. This requirement ...
分类:其他好文   时间:2021-01-28 11:56:38    阅读次数:0
PostgreSQL之SQL语法(一)词法结构
中文社区 常量 1.字符串常量 在SQL中,一个字符串常量是一个由单引号(')包围的任意字符序列,例如'This is a string'。为了在一个字符串中包括一个单引号,可以写两个相连的单引号,例如'Dianne''s horse'。注意这和一个双引号(")不同。 2.美元引用的字符串常量 虽然 ...
分类:数据库   时间:2021-01-26 11:53:53    阅读次数:0
6613条   上一页 1 ... 5 6 7 8 9 ... 662 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!