10 2020 档案

摘要:一个面试题:实现两个线程A,B交替输出偶数和奇数 问题:创建两个线程A和B,让他们交替打印0到100的所有整数,其中A线程打印偶数,B线程打印奇数 这个问题配合java的多线程,很多种实现方式 在具体实现之前,首先介绍一下java并发编程中共享变量的可见性问题。 可见性问题: 在java内存模型(J 阅读全文
posted @ 2020-10-25 17:16 sunfulv 阅读(1459) 评论(0) 推荐(0)
摘要:Martyr2项目实现——Number部分的问题求解(4)Next Prime Number 问题描述: Have the program find prime numbers until the user chooses to stop asking for the next one 翻译: 给定 阅读全文
posted @ 2020-10-20 10:45 sunfulv 阅读(883) 评论(0) 推荐(0)
摘要:Martyr2项目实现——Number部分问题求解(3) Prime Factorization 质因子分解 问题描述: Prime Factorization – Have the user enter a number and find all Prime Factors (if there a 阅读全文
posted @ 2020-10-20 10:38 sunfulv 阅读(198) 评论(0) 推荐(0)
摘要:Martyr2项目实现——Number部分的问题求解(2)Fibonacci Sequence Fibonacci Sequence 题目描述: Enter a number and have the program generate the Fibonacci sequence to that n 阅读全文
posted @ 2020-10-19 16:18 sunfulv 阅读(1006) 评论(0) 推荐(1)
摘要:Martyr2项目实现——Number部分的问题求解 (1) Find Pi to Nth Digit Find Pi to Nth Digit 问题描述: Find PI to the Nth Digit – Enter a number and have the program generate 阅读全文
posted @ 2020-10-18 22:31 sunfulv 阅读(383) 评论(0) 推荐(0)
摘要:martyr2s-project 参考文章链接:https://www.zhihu.com/question/29779842/answer/71475305 国外程序员 martyr2s提出的可以用于巩固计算机知识的练手小项目。分为数值,文本,面向对象,多线程,网络,Web,文件,数据库,图像与多 阅读全文
posted @ 2020-10-18 16:05 sunfulv 阅读(773) 评论(0) 推荐(0)