zoukankan
html css js c++ java
short s1 = 1; s1 = s1 + 1;有什么错? short s1 = 1; s1 += 1;有什么错?
short s1 = 1; s1 = s1 + 1;有错,s1是short型,s1+1是int型,不能显式转化为short型。可修改为s1 =(short)(s1 + 1) 。
short s1 = 1; s1 += 1 正确。
qishichang
查看全文
相关阅读:
Spring(一)Spring的基本应用
flask摘记
python摘记
String Algorithm
leetcode -- hard part
leetcode -- medium part
leetcodo--Easy part
unix网络编程
SQL
计算机网络知识
原文地址:https://www.cnblogs.com/qishichang/p/1223458.html
最新文章
SSH统计热卖商品(解决类型转换问题)
http请求时,GET与POST区别
新浪PHP面试题
linux的相关问题
const的用法
安装vmware workstation报错:The MSI failed internal error 2356 data1.cab
ImageButton"边框"的问题
每日一练:java实现冒泡排序
利用PowerDesigner反向生成PDM文件的两种方式
Mac下使用eclipse查看Java源码
热门文章
Java实现质因数分解
Java的输入和输出遇到的一点问题
Mac下安装jdk,并编写hello world
try-catch-finally 中的return 语句
MySQL(二) 数据表的基本操作
MySQL(一) 数据库的基本操作
Spring(五) SSH框架整合
Spring(四)事务管理
Spring(三)数据库开发
Spring(二)面向切面编程AOP
Copyright © 2011-2022 走看看