码迷,mamicode.com
首页 >  
搜索关键字:constant    ( 1663个结果
数组定义与类的初始化
数组定义与类的初始化 SuperClass类: public class SuperClass { public static String staticVariable = "staticVariable"; public static final String STATIC_CONSTANT = ...
分类:编程语言   时间:2020-06-26 14:57:34    阅读次数:48
Reversing Linked line
Reversing Linked List Given a constant K and a singly linked list L, you are supposed to reverse the links of every K elements on L. For example, give ...
分类:其他好文   时间:2020-06-25 14:13:09    阅读次数:56
字符串拼接原理以及字符串常见面试题
第一种情况 /* * 第一种情况 * 证明:是否在编译的时候完成拼接 * */ String str = "a" + "b"; 常量池信息: 查看常量池信息必须通过 javap -v 命令来查看Class文件(java文件编译后的文件) Constant pool: #1 = Methodref # ...
分类:其他好文   时间:2020-06-19 21:10:16    阅读次数:48
【FPGA】VHDL基础
对象 Constant(常量),Variable(变量),Signal(信号) 语法规则 1、保留字(int),对象(Architecture),函数,过程(process)组成的。 2、大小写不敏感 3、句末用“;”结束 4、对空格键不敏感 5、用--来注释 命名和标签 1、所有名字(字母数字下划 ...
分类:其他好文   时间:2020-06-18 11:18:09    阅读次数:80
Python_DL_TensorFlow_02_
1. import tensorflow as tf #创建一个常量op m1 = tf.constant(([[3,3]])) #创建一个常量op m2 = tf.constant(([[2],[3]])) #创建一个矩阵乘法op,把m1和m2传入。 product = tf.matmul(m1, ...
分类:编程语言   时间:2020-06-18 01:51:17    阅读次数:74
1074 Reversing Linked List (25分)
Given a constant K and a singly linked list L, you are supposed to reverse the links of every K elements on L. For example, given L being 1→2→3→4→5→6, ...
分类:其他好文   时间:2020-06-17 23:12:36    阅读次数:57
springboot如何处理过滤器filter中抛出的异常
在使用springboot过程中,一般都会设置全局异常管理,如下: import com.yzf.enterprise.market.common.constant.HttpStatus; import com.yzf.enterprise.market.common.exception.BaseE ...
分类:编程语言   时间:2020-06-17 11:14:59    阅读次数:501
StorageUtil
package com.android.demo.lileidemo.utils;import android.content.Context;import android.os.Environment;import android.os.StatFs;import android.util.Log ...
分类:其他好文   时间:2020-06-16 15:06:46    阅读次数:56
ShutdownBroadcastReceiver
package com.android.demo.lileidemo.listener;import android.content.BroadcastReceiver;import android.content.Context;import android.content.Intent;impo ...
分类:其他好文   时间:2020-06-16 15:06:35    阅读次数:55
年龄_性别识别
参考开源项目:年龄_性别识别 1.识别效果如下图 2.keras模型转pb模型,方便模型的迁移和rknn平台的使用,代码1如下: from keras.models import load_model import tensorflow as tf import os import os.path ...
分类:其他好文   时间:2020-06-16 15:02:05    阅读次数:124
1663条   上一页 1 ... 4 5 6 7 8 ... 167 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!