码迷,mamicode.com
首页 >  
搜索关键字:static const    ( 70582个结果
71 多态
多态 多态注意事项: 多态是方法的多态,属性没有多态 父类和子类,有联系,类型转换异常! ClassCastException 3. 存在条件:继承关系,方法需要重写,父类引用指向子类对象! Father f1 -->Son(); 不能重写的方法: 1.static方法,属于类,它不属于实例 2.f ...
分类:其他好文   时间:2021-05-24 01:02:58    阅读次数:0
Java中 复合赋值运算符 的 类型转换(属于强制类型转换)
当程序中有复合赋值运算符时,不同类型的数据会进行强制转换,比如下面例子:byte b += 2,是把int类型数据强制转换成byte,然后在进行赋值操作的! public class AssignOperator { public static void main(String[] args) { ...
分类:编程语言   时间:2021-05-24 00:59:35    阅读次数:0
Java 执行命令解析总结
桌面新建一个文本文档(新建文本文档.txt)将文件名修改为 Demo01.java,内容如下: public class Demo01 { public static void main(String[] args) { int a = 10; System.out.println(a); } } ...
分类:编程语言   时间:2021-05-24 00:55:02    阅读次数:0
[beego学习] 模板文件及静态文件的使用
模板文件及静态文件的使用 一、模板文件 默认路径:项目根目录下的views文件夹 修改路径:两种方式 1.在main.go中加 beego.SetViewsPath("newViewPath") 2.在配置文件conf/app.conf 下加入 viewspath= newViewPath, 这类方 ...
分类:其他好文   时间:2021-05-24 00:36:13    阅读次数:0
学习链接
1 Java 静态对象 static 2 lombok——@EqualsAndHashCode(callSuper = true)注解的使用 ...
分类:其他好文   时间:2021-05-24 00:22:24    阅读次数:0
c#日志生成
using System; using System.Collections.Generic; using System.IO; using System.Text; /// <summary> /// 打印error类 /// </summary> public class LogUtil { p ...
分类:Windows程序   时间:2021-05-24 00:05:56    阅读次数:0
[ AGC003 D ] Anticube
题目 Atcoder 思路 代码 #include <iostream> #include <algorithm> #include <cmath> #include <map> #define int long long using namespace std; const int N = 100 ...
分类:其他好文   时间:2021-05-24 00:04:21    阅读次数:0
Gradle 使用@Value注册编译报错
报错信息:Expected '$(student - name)' to be an inline constant of type java.lang.String in @org.springframework.beans.factory.annotation.Value 这样使用会报错,原因是 ...
分类:其他好文   时间:2021-05-24 00:03:03    阅读次数:0
List转Map的三种方法
1 for循环 2 import com.google.common.base.Function; 3 import com.google.common.collect.Maps; 4 5 import java.util.ArrayList; 6 import java.util.HashMap; ...
分类:其他好文   时间:2021-05-23 23:53:14    阅读次数:0
Codeforces Global Round 14 A. Phoenix and Gold
一、算法分析 当时比赛做的时候有点急躁,就首先考虑了三种情况,分别是砝码总重恰好为x,大于x和小于x.显然只有总重恰好为x的时候才会必然爆炸,否则都可以通过一定的方式进行规避。然后考虑如何安排顺序进行规避,如果总重小于x则显然随便安排都不会炸。但是如果总重大于x则就要考虑怎么安排了,思路如下: 先排 ...
分类:其他好文   时间:2021-05-23 23:40:03    阅读次数:0
70582条   上一页 1 ... 46 47 48 49 50 ... 7059 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!