摘要:
1.算数操作符: +(加) -(减) *(乘) /(除于) public class HelloWorld { public static void main(String[] args) { int i = 10; int j = 5; int a = i + j; int b = i - j; 阅读全文
摘要:
时区错误,MySQL默认的时区是UTC时区,比北京时间晚8个小时。 在mysql的命令模式下,输入: set global time_zone='+8:00'; 再次连接成功 参考文章:https://www.cnblogs.com/sunchunmei/p/11426758.html 阅读全文