- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以,我刚刚完成了这个关于同步的作业,我对得到的结果很好奇,因为我不太明白为什么一种形式比另一种形式更快。</p>
有一个帐户类,定义如下:
public class Account {
/*
* ------------
* Data members
* ------------
*/
/**
* Attribute presents an account number
*/
private int acc;
/**
* Attribute that presents an customer name
*/
private String name;
/**
* Attribute that presents an account balance
*/
private double balance;
/*
* ------------
* Constructors
* ------------
*/
/**
* Assigns account number, name and balance.
*
* @param acc A unique integer that represents account number
* @param name A string indicating human-readable customer's name
* @param balance A double indicating account balance
*/
public Account(int acc, String name, double balance) {
super();
this.acc = acc;
this.name = name;
this.balance = balance;
}
@Override
/**
* equals method works as == operator
* it checks if two accounts are identical
*/
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Account other = (Account) obj;
if (acc != other.acc)
return false;
if (Double.doubleToLongBits(balance) != Double
.doubleToLongBits(other.balance))
return false;
if (name == null) {
if (other.name != null)
return false;
} else if (!name.equals(other.name))
return false;
if (acc!=other.acc)return false;
return true;
}
/**
* Accessor for account no
* @return account no
*/
public int getAcc() {
return acc;
}
/**
* Mutator for account no
* @param acc A unique int for acoount number
*/
public void setAcc(int acc) {
this.acc = acc;
}
/**
* Accessor for a customer's name
* @return a customer's name
*/
public String getName() {
return name;
}
/**
* Mutator for a customer name
* @param name A string that represents a customer name
*/
public void setName(String name) {
this.name = name;
}
/**
* Accessor for account balance
* @return an account balance
*/
public double getBalance() {
return balance;
}
/**
* Mutator for account balance
* @param balance A double that represents an account balance
*/
public void setBalance(double balance) {
this.balance = balance;
}
/**
* A method to print this account
*/
public String toString(){
return "Account: "+acc+" \tName: "+name+" \tBalance:\t"+balance;
}
/**
* A method that allows a customer to deposit money into this account
* @param amount A double that represents a deposit amount
*/
public void debosit(double amount){
// Waste some time doing fake computations
// do not remove or modify any of the following 3 statements
double k = 999999999;
for(int i=0;i<100;i++)
k = k / 2;
balance = balance + amount;
// Waste some time doing fake computations
// do not remove or modify any of the following 3 statements
k = 999999999;
for(int i=0;i<100;i++)
k = k / 2;
}
/**
* A method that allows a customer to withdraw money from this account
* @param amount A double that represents a withdrawal amount
*/
public void withdraw(double amount){
// Waste some time doing fake computations
// do not remove or modify any of the following 3 statements
double k = 999999999;
for(int i=0;i<100;i++)
k = k / 2;
balance = balance - amount;
// Waste some time doing fake computations
// do not remove or modify any of the following 3 statements
k = 999999999;
for(int i=0;i<100;i++)
k = k / 2;
}
}
public void debosit(double amount){
// Waste some time doing fake computations
// do not remove or modify any of the following 3 statements
double k = 999999999;
for(int i=0;i<100;i++)
k = k / 2;
balance = balance + amount;
// Waste some time doing fake computations
// do not remove or modify any of the following 3 statements
k = 999999999;
for(int i=0;i<100;i++)
k = k / 2;
}
/**
* A method that allows a customer to withdraw money from this account
* @param amount A double that represents a withdrawal amount
*/
public void withdraw(double amount){
// Waste some time doing fake computations
// do not remove or modify any of the following 3 statements
double k = 999999999;
for(int i=0;i<100;i++)
k = k / 2;
balance = balance - amount;
// Waste some time doing fake computations
// do not remove or modify any of the following 3 statements
k = 999999999;
for(int i=0;i<100;i++)
k = k / 2;
}
存款人类如下所示:
public class Depositor extends Thread {
private Account account ;
public Depositor(Account account){
this.account = account;
}
public void run(){
synchronized(account){
for (int i=0;i<10000000;i++)
{
account.debosit(10);
}
/*
try {
sleep(10);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}*/
}
}
}
取款者类,与存款类似,只是运行取款方法而不是存款方法。
具有main方法的类如下:
public class AccountManager {
public static void main(String[] args) {
// TODO Auto-generated method stub
Account [] account = new Account[10];
Depositor [] deposit = new Depositor[10];
Withdrawer [] withdraw = new Withdrawer[10];
// The birth of 10 accounts
account[0] = new Account(1234,"Mike",1000);
account[1] = new Account(2345,"Adam",2000);
account[2] = new Account(3456,"Linda",3000);
account[3] = new Account(4567,"John",4000);
account[4] = new Account(5678,"Rami",5000);
account[5] = new Account(6789,"Lee",6000);
account[6] = new Account(7890,"Tom",7000);
account[7] = new Account(8901,"Lisa",8000);
account[8] = new Account(9012,"Sam",9000);
account[9] = new Account(4321,"Ted",10000);
// The birth of 10 depositors
deposit[0] = new Depositor(account[0]);
deposit[1] = new Depositor(account[1]);
deposit[2] = new Depositor(account[2]);
deposit[3] = new Depositor(account[3]);
deposit[4] = new Depositor(account[4]);
deposit[5] = new Depositor(account[5]);
deposit[6] = new Depositor(account[6]);
deposit[7] = new Depositor(account[7]);
deposit[8] = new Depositor(account[8]);
deposit[9] = new Depositor(account[9]);
// The birth of 10 withdraws
withdraw[0] = new Withdrawer(account[0]);
withdraw[1] = new Withdrawer(account[1]);
withdraw[2] = new Withdrawer(account[2]);
withdraw[3] = new Withdrawer(account[3]);
withdraw[4] = new Withdrawer(account[4]);
withdraw[5] = new Withdrawer(account[5]);
withdraw[6] = new Withdrawer(account[6]);
withdraw[7] = new Withdrawer(account[7]);
withdraw[8] = new Withdrawer(account[8]);
withdraw[9] = new Withdrawer(account[9]);
System.out.println("Print initial account balances");
// Print initial account balances
for(int i=0;i<10;i++)
System.out.println(account[i]);
// Get start time in milliseconds
long start = System.currentTimeMillis();
System.out.println("Depositor and Withdrawal threads have been created");
/*
* Interleave all threads
*/
for(int i=0; i<10; i++){
deposit[i].start();
withdraw[i].start();
}
for(int i=0; i<10; i++){
try {
deposit[i].join();
withdraw[i].join();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
// Get elapsed time in milliseconds
long elapsedTimeMillis = System.currentTimeMillis()-start;
System.out.println("Print final account balances after all the child thread terminated...");
// Print final account balances after all the child thread terminated...
for(int i=0;i<10;i++)
System.out.println(account[i]);
// Get elapsed time in seconds
float elapsedTimeSec = elapsedTimeMillis/1000F;
System.out.println("Elapsed time in milliseconds "+elapsedTimeMillis);
System.out.println("Elapsed time in seconds is "+elapsedTimeSec);
// Get elapsed time in minutes
float elapsedTimeMin = elapsedTimeMillis/(60*1000F);
// Get elapsed time in hours
float elapsedTimeHour = elapsedTimeMillis/(60*60*1000F);
// Get elapsed time in days
float elapsedTimeDay = elapsedTimeMillis/(24*60*60*1000F);
}
}
抱歉,代码很多,但最后我的问题是:
如果我使用 block 同步,我可以直接放在account类中,如下:
public void withdraw(double amount){
// Waste some time doing fake computations
// do not remove or modify any of the following 3 statements
double k = 999999999;
for(int i=0;i<100;i++)
k = k / 2;
synchronized(this)
balance = balance - amount;
// Waste some time doing fake computations
// do not remove or modify any of the following 3 statements
k = 999999999;
for(int i=0;i<100;i++)
k = k / 2;
}
此解决方案在两者上完成后,总共需要 1 秒才能运行。但是,如果我将同步移至取款者和存款者类,它看起来像这样:
public void run(){
// Withdraw 10 CAD into instance variable account
for (int i=0;i<10000000;i++)
{
synchronized(account)
account.withdraw(10);
}
}
这大约需要 1/10 的运行时间。
这是为什么呢?他们不应该花费同样的时间吗?
最佳答案
锁定有一定的开销。如果你锁定 100 次以上,那么锁定开销应该会增加 100 次。
您没有看到 100 倍的差异,而只看到 10 倍的差异,是因为代码正在执行其他操作,但如果您只进行锁定,您会注意到更大的差异。除非 JIT 编译器会注意到循环中的同步块(synchronized block)并将其提升出来,但它似乎在您的测试中没有这样做。
关于java - 为什么这种形式的 block 同步比其他形式更快?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48677483/
这是一个新手理论问题 - 我刚刚开始使用 Python 并研究 Django 和 orm。问题:如果我开发我的对象并通过额外的开发修改基础对象结构、继承等 - Django 的 ORM 解决方案会自动
我正在使用带有服务器端处理器的 JavaScript 表单,并且我希望能够让表单根据下拉列表转到不同的电子邮件。我已经根据其他表格尽了最大努力,但似乎无法通过电子邮件。我已在电子邮件地址的选项标签下添
一个简单的问题:给定定义,(来自 Haskell SOE) do x — el; el\ ...; en => el »= \x — do e2\ ...; en 和: do let d
我是 Angular 5 的新手。我目前正在研究 Angular Reactive 表单。我有一个下面的 JSON 结构,我需要在从 FORM 获取值后发回 REST API。 JSON 结构: {
我是 Angular 5 的新手。我目前正在研究 Angular Reactive 表单。我有一个下面的 JSON 结构,我需要在从 FORM 获取值后发回 REST API。 JSON 结构: {
我有一个类型(称之为 A),我想创建一个 A -> A、A -> A -> A、A -> A -> A -> ... 等类型的函数的类型类.这不起作用: {-# LANGUAGE FlexibleIn
我正在使用 java 线程同时管理多个 (3) 程序。1 用于 Java swing 表单(绘制 UI 以进行输入),1 用于在系统托盘上设置图标(从 UI 获取输入后立即启动),1 用于处理输入并将
在当前的元素中,我在表单中遇到了一个问题。表单中标签的字体大小可能大于默认值。如果我把它举起来,那么右边的输入必须垂直居中。 我查看了 Bootstrap 和 Foundation,但都没有解决这个问
为了好玩,我使用了一段从 friend 那里得到的代码,并尝试创建一个包含用户名和密码的登录字段,但我很难获得单词旁边的字段。 username 这个词和你输入的框之间有很大的差距。密码也是如此。 这
我的表单中有一个嵌套的控制组,我想访问它们的表单状态值(如原始和有效)以动态显示验证错误。 是这样动态构建的 controlMap['password'] = this.password; contr
发送后我试图重置我的表单,但只有值设置为空。 component.html {{note.value?.length || 0}}/10
我正在尝试自定义 Stripe 结帐表单,但我不知道如何添加输入。我想添加“电话号码”和“姓名”以创建费用和客户。你知道我该怎么做吗? 这是我应该自定义的代码。 最佳答案 您将无法使用
所以我有这个需求,我想以表格的形式提交一个由五个记录组成的表单。这就是它的样子表: 这是对应的代码: Section Q.No Question
我有一个使用 react 形式和输入文本的情况。 我需要: 当用户输入时,根据输入的内容建议一个列表(我使用的是 ngx bootstrap typeahead); 仅当用户失去输入焦点时才验证输入字
我希望重构我的 Angular 项目中的大量组件,以具有强类型的 FormGroups、FormArrays 和 FormControls。 我只是在寻找一种实现强类型 react 形式的好方法。任何
我有事件表格: 'horizontal', 'fieldConfig' => [ 'template' => "{input}\n{hint}\n{error}",
是否有关于如何实现多选和响应式表单的示例? 我正在尝试在 multiselect-dropdown 上设置所选项目(从数据库中检索),它会更新显示的项目( View ),但会引发以下错误: core.
我想在表单中添加按钮以动态添加输入。但是我发现,如果我在表单中添加了一个仅记录到控制台的按钮(并且当我尝试添加输入时),它将记录日志,然后表单中断。我的Electron应用程序的前端窗口崩溃(不退出但
我有一个这样的表格 此表单位于指令内: angular.module('crowdcoreApp').directive('investorForm',function(){
我在 angularjs Controller 中调用的 $mdDialog 中有一个表单,如下所示: actions-controller.js function callForm() {
我是一名优秀的程序员,十分优秀!