https://github.com/cassiofb-dev/producer-consumer_problem
Producer-Consumer problem in Java and Python (JDK16 and Python3)
https://github.com/cassiofb-dev/producer-consumer_problem
java jdk16 multithreading parallel-computing parallel-programming python python3
Last synced: 2 months ago
JSON representation
Producer-Consumer problem in Java and Python (JDK16 and Python3)
- Host: GitHub
- URL: https://github.com/cassiofb-dev/producer-consumer_problem
- Owner: cassiofb-dev
- Created: 2021-04-27T23:16:11.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-27T23:39:41.000Z (over 4 years ago)
- Last Synced: 2025-02-18T09:08:45.307Z (11 months ago)
- Topics: java, jdk16, multithreading, parallel-computing, parallel-programming, python, python3
- Language: Java
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Problema Produtor-Consumidor

Implementação do problema produtor-consumidor em:
- [X] Java
- [X] Python
- [ ] C
## Executando o código
Clone o repositório
```
git clone https://github.com/cassiofb-dev/producer-consumer_problem
```
Abra a pasta no terminal:
```
cd producer-consumer_problem
```
### Para executar em Java - [OpenJDK16](https://jdk.java.net/16/)
Compile:
```
javac Main.java
```
Execute:
```
java Main
```
### Para executar em Python - [Python3](https://www.python.org/download/releases/3.0/)
Execute o comando
```
py main.py
```