- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
以下代码是Java中的Passing the Baton程序的一部分:
主要
P1(作家)
P2(作家)
P3(阅读器)
P4(阅读器)
主要();
package ReadersPreference;
import java.util.concurrent.Semaphore;
/**
* * @author me
*/
public class Main {
public static void main(String[] args) {
AnyData x = new AnyData(5.7);//gives writers something to write,
//readers something to read
Semaphore e = new Semaphore(1);//control entry
Semaphore r = new Semaphore(0);//used to delay readers
Semaphore w = new Semaphore(0);//used to delay writers
int nr = 0;//readers active
int nw = 0;//writers active
int dr = 0;//readers waiting
int dw = 0;//writers waiting
P1 r1 = new P1(e, r, w, x, nr, nw, dr, dw); // #reader thread 1
P2 r2 = new P2(e, r, w, x, nr, nw, dr, dw); // #reader thread 2
P5 r3 = new P5(e, r, w, x, nr, nw, dr, dw); // #reader thread 3
P6 r4 = new P6(e, r, w, x, nr, nw, dr, dw); // #reader thread 4
P3 w1 = new P3(e, r, w, x, nr, nw, dr, dw); // #writer thread 1
P4 w2 = new P4(e, r, w, x, nr, nw, dr, dw); // #writer thread 2
System.out.println("threads commanded to start");
r1.start(); // calls run() method in Thread
r2.start();
r3.start();
r4.start();
w1.start();
w2.start();
}//end of main
}//end of class
package ReadersPreference;
import java.util.concurrent.Semaphore;
public class P1 extends Thread {
private Semaphore e;
private Semaphore r;
private Semaphore w;
private AnyData pillarbox;
private int nw;
private int nr;
private int dr;
private int dw;
public P1(Semaphore e, Semaphore r, Semaphore w, AnyData pbox,
int nw, int nr, int dr, int dw) {
this.nw = nw;
this.nr = nr;
this.dr = dr;
this.dw = dw;
this.e = e;
this.r = r;
this.w = w;
pillarbox = pbox;
}// end of constructor
public void run() {
PERFORM OPERATIONS
}// end of run method
}// end of class
public void setCounters(int nr){nr = newNR;}
最佳答案
首先,好的变量名总是比注释更好;遵守这个规则,您就不会出错。想象一下,我在代码中的某个地方遇到了您的e
变量,现在我必须滚动到类的顶部,并阅读注释以查看其含义,然后返回到原来的位置。这使得代码几乎不可读...
您的第一个问题是您正在使用的int
是原始类型,它是通过值传递的。 @Marcin的解决方案不是线程安全的;如果您执行类似int++
的操作,那么当被多个线程调用时,这可能会做各种奇怪的事情(例如不递增,返回错误的值等)。 始终在多线程操作中使用线程安全对象。
正如@Marcin建议的那样,您可以将数据包装在一个类中以减少代码量:
public class SharedData<T> {
private final T data;
private final Semaphore entryControl = new Semaphore(1);
private final Semaphore readerDelay = new Semaphore(0);
private final Semaphore writerDelay = new Semaphore(0);
private final AtomicInteger activeReaders = new AtomicInteger(0);
private final AtomicInteger activeWriters = new AtomicInteger(0);
private final AtomicInteger waitingReaders = new AtomicInteger(0);
private final AtomicInteger waitingWriters = new AtomicInteger(0);
public SharedData(final T data) {
this.data = data;
}
//getters
}
AtomicInteger
对象,这是一个线程安全的整数,允许进行诸如
getAndSet(int newValue)
之类的原子操作-这样就消除了访问单个值时出现线程安全问题的可能性,但看起来您可能想要访问两个值,但这仍然不是线程安全的因此,您可能需要按照以下步骤向数据类添加一些方法:
public synchronized void makeReaderActive() {
//perform checks etc
waitingReaders.decrementAndGet();
activeReaders.incrementAndGet();
}
waitingReaders
,然后在递增之前先读取
activeReaders
。
P1
,
P2
等),这不是Java的工作方式。考虑在创建
Semaphore
的地方的代码:
Semaphore e = new Semaphore(1);//control entry
Semaphore r = new Semaphore(0);//used to delay readers
Semaphore
类复制到另一个文件中并创建该文件。您不必这样做:
Semaphore1 e = new Semaphore1(1);//control entry
Semaphore2 r = new Semaphore2(0);//used to delay readers
Reader
进程和一些
Writer
进程,然后需要两个类:
public class MyReader implements Callable<Void> {
private final String name;
private final SharedData sharedData;
public MyReader(final String name, final SharedData sharedData) {
this.name = name;
this.sharedData = sharedData;
}
@Override
public Void call() {
//do stuff
return null;
}
}
public class MyWriter implements Callable<Void> {
private final String name;
private final SharedData sharedData;
public MyWriter(final String name, final SharedData sharedData) {
this.name = name;
this.sharedData = sharedData;
}
@Override
public Void call() {
//do stuff
return null;
}
}
Callable
而不是线程;这使我想到了下一个要点。
Thread
对象,这些对象级别很低并且很难正确管理。您应该使用新的
ExecutorService。因此,您的
main
方法现在看起来像:
public static void main(String[] args) {
final SharedData<Double> sharedData = new SharedData<Double>(5.7);
final List<Callable<Void>> myCallables = new LinkedList<Callable<Void>>();
for (int i = 0; i < 4; ++i) {
myCallables.add(new MyReader("reader" + i, sharedData));
}
for (int i = 0; i < 2; ++i) {
myCallables.add(new MyWriter("writer" + i, sharedData));
}
final ExecutorService executorService = Executors.newFixedThreadPool(myCallables.size());
final List<Future<Void>> futures;
try {
futures = executorService.invokeAll(myCallables);
} catch (InterruptedException ex) {
throw new RuntimeException(ex);
}
for (final Future<Void> future : futures) {
try {
future.get();
} catch (InterruptedException ex) {
throw new RuntimeException(ex);
} catch (ExecutionException ex) {
throw new RuntimeException(ex);
}
}
}
SharedData
类-在这种情况下,它是
SharedData<Double>
;这意味着它包含的
data
是
Double
类型;这可能是任何东西。
List
的
Callable
,这是我们的工作 class 去的地方。然后,我们将工作类循环放入
List
中。请注意,我们为每个
MyReader
和
MyWriter
创建了相同类的实例-我们不需要每个类都有一个类文件。
ExecutorService
,其线程池的大小与我们创建的工作类的数量相同-注意,我们可以拥有更少的线程。在这种情况下,每个线程将分配一个工作类,然后在完成工作后将为其分配一个新的工作类,直到完成所有工作。在我们的例子中,有足够的线程,因此每个简单的线程都会分配一个工作类。
invokeAll
中传递
List
,这是我们要求
ExecutorService
对所有
call
进行
Callable
的地方。该方法一直阻塞,直到一切都完成为止,它可能会像其他任何等待方法一样抛出
InterrupedException
-在这种情况下,我们抛出异常并退出。
ExecutorService
的亮点,我们遍历返回的
Future
类列表并调用
get
-如果在与该将来相关的工作中遇到任何问题,这将抛出
ExecutionException
。在这种情况下,我们抛出异常。
Callable
的类型为
Void
(即声明为
Callable<Void>
),然后过滤器过滤到
Future
的类型为
Future<Void>
。如果要从每个进程返回一些数据,则可以将类型更改为
Callable<MyData>
,然后
get
的
Future
方法将向您返回此数据。
关于java - 读者/作家通过引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15254737/
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: template pass by value or const reference or…? 以下对于将函数
我用相同的参数列表重载了一个运算符两次。但返回类型不同: T& operator()(par_list){blablabla} const T& operator()(par_list){bla
假设我有实现接口(interface) I 的 Activity A。我的 ViewModel 类 (VM) 持有对实现接口(interface) I 的对象的引用: class A extends
PHP 如何解释 &$this ?为什么允许? 我遇到了以下问题,这看起来像是 PHP 7.1 和 7.2 中的错误。它与 &$this 引用和跨命名空间调用以及 call_user_func_arr
谁能解释一下下面“&”的作用: class TEST { } $abc =& new TEST(); 我知道这是引用。但是有人可以说明我为什么以及什么时候需要这样的东西吗?或者给我指向一个对此有很好解
引用变量是一个别名,也就是说,它是某个已存在变量的另一个名字。一旦把引用初始化为某个变量,就可以使用该引用名称或变量名称来指向变量。 C++ 引用 vs 指针 引用很容易与指针混淆,它们之间有三
目录 引言 背景 结论 引言 我选择写C++中的引用是因为我感觉大多数人误解了引用。而我之所以有这个感受是因为我主持过很多C++的面试,并且我很少
Perl 中的引用是指一个标量类型可以指向变量、数组、哈希表(也叫关联数组)甚至函数,可以应用在程序的任何地方 创建引用 定义变量的时候,在变量名前面加个 \,就得到了这个变量的一个引用 $sc
我编写了一个将从主脚本加载的 Perl 模块。该模块使用在主脚本中定义的子程序(我不是维护者)。 对于主脚本中的一个子例程,需要扩展,但我不想修补主脚本。相反,我想覆盖我的模块中的函数并保存对原始子例
我花了几个小时试图掌握 F# Quotations,但我遇到了一些障碍。我的要求是从可区分的联合类型中取出简单的函数(只是整数、+、-、/、*)并生成一个表达式树,最终将用于生成 C 代码。我知道使用
很多时候,问题(尤其是那些标记为 regex 的问题)询问验证密码的方法。似乎用户通常会寻求密码验证方法,包括确保密码包含特定字符、匹配特定模式和/或遵守最少字符数。这篇文章旨在帮助用户找到合适的密码
我想通过 MIN 函数内的地址(例如,C800)引用包含文本的最后一个单元格。你能帮忙吗? Sub Set_Formula() ' ----------------------------- Dim
使用常规的 for 循环,我可以做类似的事情: for (let i = 0; i < objects.length; i++) { delete objects[i]; } 常规的 for-
在 Cucumber 中,您定义了定义 BDD 语法的步骤;例如,您的测试可能有: When I navigate to step 3 然后你可以定义一个步骤: When /^I navigate t
这是什么UnaryExpression的目的,以及应该怎样使用? 最佳答案 它需要一个 Expression对象并用另一个 Expression 包裹它.例如,如果您有一个用于 lambda 的表达式
给出以下内容 $("#identifier div:first, #idetifier2").fadeOut(300,function() { // I need to reference jus
我不知道我要找的东西的正确术语,但我要找的是一个完整的引用,可以放在双引号之间的语句,比如 *, node()、@* 以及所有列出的 here加上任何其他存在的。 我链接到的答案提供了一些细节,但还
This question's answers are a community effort。编辑现有答案以改善此职位。它当前不接受新的答案或互动。 这是什么? 这是常见问答的集合。这也是一个社区Wi
Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。 想改善这个问题吗?更新问题,以便将其作为on-topic
考虑下一个代码: fn get_ref(slice: &'a Vec, f: fn(&'a Vec) -> R) -> R where R: 'a, { f(slice) } fn m
我是一名优秀的程序员,十分优秀!