gpt4 book ai didi

java - 没有 new 运算符的对象

转载 作者:行者123 更新时间:2023-12-01 18:11:24 25 4
gpt4 key购买 nike

PreparedStatement preparedStatement = connection.prepareStatement(sql);

preparedStatement.setString(1, "Gary");
preparedStatement.setString(2, "Larson");
preparedStatement.setLong (3, 123);

“preparedStatement”是一个对象。但是如果它不使用 new 运算符,我们如何将其作为对象来调用呢?

最佳答案

当然它使用了 new 运算符,它只是在 prepareStatement 的实现中的某个地方使用了 new 。这只是调用另一个为您进行 new 操作的方法。这实际上是一种 super 常见的模式,称为工厂模式。

关于java - 没有 new 运算符的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32751099/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com