java sync 实现原理_JAVA 同步实现原理

原标题:JAVA 同步实现原理

Synchronized的基本使用

Synchronized是Java中解决并发问题的一种最常用的方法,也是最简单的一种方法。Synchronized的作用主要有三个:

确保线程互斥的访问同步代码

保证共享变量的修改能够及时可见

有效解决重排序问题。

从语法上讲,Synchronized总共有三种用法:

修饰普通方法

修饰静态方法

修饰代码块

接下来我就通过几个例子程序来说明一下这三种使用方式(为了便于比较,三段代码除了Synchronized的使用方式不同以外,其他基本保持一致)。

没有同步的情况

package com.paddx.test.concurrent;

public class SynchronizedTest {

public void method1(){

System.out.println("Method 1 start");

try {

System.out.println("Method 1 execute");

Thread.sleep(3000);

} catch (InterruptedException e) {

e.printStackTrace();

}

System.out.println("Method 1 end");

}

public void method2(){

System.out.println("Method 2 start");

try {

System.out.println("Method 2 execute");

Thread.sleep(1000);

} catch (InterruptedException e) {

e.printStackTrace();

}

System.out.println("Method 2 end");

}

public static void main(String[] args) {

final SynchronizedTest test = new SynchronizedTest();

new Thread(new Runnable() {

@Override

public void run() {

test.method1();

}

}).start();

new Thread(new Runnable() {

@Override

public void run() {

test.method2();

}

}).start();

}

}

执行结果如下,线程1和线程2同时进入执行状态,线程2执行速度比线程1快,所以线程2先执行完成,这个过程中线程1和线程2是同时执行的。

Method 1 start

Method 1 execute

Method 2 start

Method 2 execute

Method 2 end

Method 1 end

对普通方法同步

package com.paddx.test.concurrent;

public class SynchronizedTest {

public synchronized void method1(){

System.out.println("Method 1 start");

try {

System.out.println("Method 1 execute"

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Java 实现 Mysql 数据同步可以通过以下步骤实现: 1. 连接源数据库和目标数据库,获取连接对象; 2. 查询源数据库中需要同步的数据; 3. 将查询结果写入到目标数据库中; 4. 关闭连接对象。 具体的实现过程可以参考以下代码: ``` import java.sql.*; public class MysqlSync { public static void main(String[] args) { Connection sourceConn = null; Connection targetConn = null; Statement sourceStmt = null; Statement targetStmt = null; ResultSet rs = null; try { // 连接源数据库 Class.forName("com.mysql.jdbc.Driver"); sourceConn = DriverManager.getConnection("jdbc:mysql://localhost:3306/source_db", "root", "password"); sourceStmt = sourceConn.createStatement(); // 查询源数据库中需要同步的数据 rs = sourceStmt.executeQuery("SELECT * FROM source_table"); // 连接目标数据库 targetConn = DriverManager.getConnection("jdbc:mysql://localhost:3306/target_db", "root", "password"); targetStmt = targetConn.createStatement(); // 将查询结果写入到目标数据库中 while (rs.next()) { String name = rs.getString("name"); int age = rs.getInt("age"); targetStmt.executeUpdate("INSERT INTO target_table (name, age) VALUES ('" + name + "', " + age + ")"); } } catch (ClassNotFoundException e) { e.printStackTrace(); } catch (SQLException e) { e.printStackTrace(); } finally { // 关闭连接对象 try { if (rs != null) { rs.close(); } if (sourceStmt != null) { sourceStmt.close(); } if (sourceConn != null) { sourceConn.close(); } if (targetStmt != null) { targetStmt.close(); } if (targetConn != null) { targetConn.close(); } } catch (SQLException e) { e.printStackTrace(); } } } } ``` 这段代码是一个简单的示例,实际应用中需要根据具体需求进行改进和优化。同时,需要注意数据库连接的安全性和性能问题。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值