由买买提看人间百态

topics

全部话题 - 话题: stroustrup
1 2 3 4 下页 末页 (共4页)
z*******n
发帖数: 1034
1
Language founder Bjarne Stroustrup gives early indicators of what to expect
in C++17
Oct 29, 2014
Although it is very early in the process, higher-level parallelism is slated
to be a key theme of the next version of C++, says Bjarne Stroustrup, the
founder of the language.
Interviewed recently, Stroustrup says the 35-year-old language has to
exploit new hardware, including transactional memory capabilities promoted
by IBM and Intel. To take advantage of these features, C++17 will need to
handle ... 阅读全帖
t**r
发帖数: 3428
2
大年初一说说码农界的人生偶像:你的偶像是linus, gosling, stroustrup,还是
Hansson, Mats, Hickey, Rob Pike, 或者,Jeff Dean, Lamport 还是 rms, dmr.
knuth?
l***i
发帖数: 1309
3
Must be Stroustrup, now MD in Morgan Stanley.
e***g
发帖数: 158
4
来自主题: Java版 - Bjarne Stroustrup pissed off
see his rants here:
http://www.artima.com/intv/modern.html
hahaha.
on the other hand, james gosling must be thinking, hmm, people are
dumb anyway, let me make Java a dumb language for them which they
cannot abuse easily when they think they are smart.
http://www.artima.com/intv/elegance.html contains links to 4 parts of
Bjarne Stroustrup interview)
s*******e
发帖数: 664
5
来自主题: Programming版 - [合集] Stroustrup的新书
☆─────────────────────────────────────☆
rodney (||) 于 (Fri Jul 31 12:50:03 2009, 美东) 提到:
写得如何且不论,校对和出版实在太粗糙了,忍不住抱怨几句
虽然他的TC++PL的勘误表也很长,好歹错误不那么低级
这本新书的错误:
http://www.stroustrup.com/Programming/errata.html
不但错得太多,而且不少是低级错误,比如stack搞成first in,first out
连Fabonacci数列都能算成1,2,3,6,9,15,24
想想Knuth的书的勘误表,就知道差距了。
☆─────────────────────────────────────☆
larrabee (larrabee) 于 (Fri Jul 31 12:54:49 2009, 美东) 提到:
本来就没法跟高德纳比呀

☆─────────────────────────────────────☆
hehehehhe (hehehehhe) 于 (Fri Jul
m****r
发帖数: 51
6
读Bjarne Stroustrup写得The C++ programming language 是不是经常有不知所谓的
感觉。水平该怎么提高呢?
f*******y
发帖数: 2368
7
by Bjarne Stroustrup书
中的for loop就常用i++(p54, p92, p94, p100...)。当然你可以
认为Bjarne Stroustrup不是牛逼人,尽管可能同意你的观点的人不会
很多。。。
f*******y
发帖数: 988
8
来自主题: Programming版 - 这么好的帖子没人转?
发信人: RuralHunter (乡村猎人), 信区: Programming
标 题: 看看牛人们是怎么评价编程语言的zz
发信站: 水木社区 (Tue May 22 11:33:20 2012), 站内
Basic
一个有过 BASIC 编程经历的人是很难学会好的编程习惯的。作为一个潜在的程序员
,他们已经被脑残并且无法修复。
-- Edsger Wybe Dijkstra,Dijkstra 算法发明者
C
C 语言程序就像一群拿着刀的人在刚刚打过蜡的地板上快速的跳舞。
-- Waldi Ravens
罗马帝国衰败的主要原因之一是因为他们缺少0,他们没有办法知道他们的 C 程序
已经成功的执行完了。
-- Robert Firth
现在是早上五点,你知道那个指针现在什么地方吗?
-- 匿名

C++
C 很容易让你朝自己的脚开枪。在 C++ 中,这么做变的困难了,但是你要不注意就
会崩掉自己的整条腿。
-- Bjarne Stroustrup,C++ 发明者
我发明了“面向对象”,... 阅读全帖
d****i
发帖数: 4809
9
C++之父Bjarne Stroustrup设计C++的本意原来是想用C++完全代替C在系统编程的地位
,但是在经过30年以后这一想法已经被证明是错误的,Stroustrup自己也承认想用C++
来取代C在系统编程领域已经无有可能,只能作为C的点缀补充扩展,C还是系统编程老
大和写操作系统的唯一语言。
r***s
发帖数: 737
10
来自主题: Programming版 - 问个c++问题
好吧我没说明白,
http://www.stroustrup.com/bs_faq2.html#constraints
这个template将来是给别人用的,我当然可以在这里写注释
可是最好的办法是让编译器给报错。 Stroustrup给出了一些
例子。但是我不知道我这种情况怎么办
W********u
发帖数: 58
11
来自主题: Programming版 - C++必备书籍推荐
C++必备书籍推荐
[手册类 – 所有级别]
The C++ Programming Language, 4th Edition 作者:Bjarne Stroustrup(更新到C++
11)C++之父写的经典C++书籍。第四版涵盖了C++11的所有内容,从语言内核到标准库。
C++ Standard Library Tutorial and Reference, 2nd Edition 作者:Nicolai
Josuttis (更新到C++11) 这本书是C++标准库(STL)的引导和手册。 2012年4月发行
的第二版涵盖了C++11。
[实用]
Effective C++, 3rd Edition 作者:Scott Meyers 本书以瞄准成为C++程序员必读的
第二本书籍而写,内容覆盖了50多个很容易记住的条款,每个条款深入浅出(并且有趣
)讲到了你可能没有考虑过的C++规则。
Effective STL 作者:Scott Meyers 讲解方式和Effective C++类似,但内容主要面向
于STL。
Effective Modern C++ 作者:Scott Meyers... 阅读全帖
z*******n
发帖数: 1034
12
http://www.informit.com/articles/printerfriendly/2211695
Introduction to "The Java Language Specification, Java SE 8 Edition"
By James Gosling, Gilad Bracha, Alex Buckley, Bill Joy, Guy L. Steele
Date: Jun 12, 2014
The Java® programming language is a general-purpose, concurrent, class-
based, object-oriented language. It is designed to be simple enough that
many programmers can achieve fluency in the language. The Java programming
language is related to C and C++ but is organized rather dif... 阅读全帖
z*******n
发帖数: 1034
13
来自主题: MobileDevelopment版 - [静态后端W3]concurrent queue 0/n
Lamport说Dijkstra灌水出现严重错误,后来Dijkstra独自将其修好,
找到篇文章 Lock-free Dynamically Resizable Arrays
http://www.stroustrup.com/lock-free-vector.pdf) 里有Bjarne Stroustrup 的名字,
3.6说In our current implementation we have not incorporated a remedy to
prevent it.
it代表 ABA problem, 这个问题是lock free结构主要要解决的问题,所以这篇文章
funny。
接下来阅读另一篇文章 http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0233r3.pdf
黄委员是作者之一.
后续计划:
double-width CAS的queue实现,支持的CPU平台架构lock free;
on-the-fly automatically reclaimed queue实现,有时lock free,有时... 阅读全帖
e***n
发帖数: 286
14
来自主题: Military版 - 计算机领域大牛
这有啥,Bjarne Stroustrup(C++的创始人)去国内开会,好几次了都没人搭理
t********t
发帖数: 1264
15
人家裁了直接去高盛,package翻几番。Stroustrup都被MS挖走了。哦,这里MS我是说
摩根斯坦利
s*c
发帖数: 48
16
来自主题: Military版 - 感觉python的前途堪忧
别的不清楚,FEM好像都用Fortran吧。Abaqus, Ansys,FEAP。
Bjarne Stroustrup都没推荐用C++搞数值计算:
https://www.youtube.com/watch?v=NvWTnIoQZj4
g***n
发帖数: 14250
17
C++ 发明人 Stroustrup 该翻译成啥
R*****5
发帖数: 4915
18
Stroustrup = 斯特劳斯特卢普

发帖数: 1
19
来自主题: Military版 - 一日一个C++(171108)!
做计算最好的工具是fortune,不过现在大家都通用C++,因为这样做出来的数据在学术
上,更有对比价值和可视性。
还有90年代出了好几版, 最后的Stroustrup这一版也是很popular的。
C++11就是给需要做密集计算和上量的数据处理用的,包括image processing和video
processing都用新版的。
你说话逻辑性很差,而且根本没有解读我的意思,说明了你: 1)不是好学校的毕业生
,2)也不是热门专业的,3)也不是正宗理科的科班出身。
这个话题就到此为止吧。

C。

发帖数: 1
20
来自主题: Military版 - 一日一个C++(171108)!

?????
什么叫"Stroustrup这一版"???
s*****r
发帖数: 773
21
来自主题: JobHunting版 - C++面试题目分享(2)
What is C++?
Released in 1985, C++ is an object-oriented programming language created by
Bjarne Stroustrup. C++ maintains almost all aspects of the C language, while
simplifying memory management and adding several features - including a new
datatype known as a class (you will learn more about these later) - to
allow object-oriented programming. C++ maintains the features of C which
allowed for low-level memory access but also gives the programmer new tools
to simplify memory management.
C++ use
l****5
发帖数: 95
22
来自主题: JobHunting版 - C++ Q35: sizeof() (B20_20)
According to Bjarne Stroustrup's book "The C++ Programming language
(special edition)" page 78 (the very top):
"The sizeof an enumeration is the sizeof some integral type that can
hold its range and not larger than sizeof(int), unless an enumerator
cannot be represented as an int or as an unsigned int".
Here integral type include Boolean, character and integer types.
Please also refer the discussion here
http://stackoverflow.com/questions/1113855/is-the-sizeofenum-sizeofint-
always

defined, and
i**********e
发帖数: 1145
23
来自主题: JobHunting版 - Best C++ book
If you already know programming basics, the best way to learn a language is
to program on it a lot. Try to come up with a self project, like a simple
game. In the process you will encounter a lot of problems and you will find
solutions. That's how you learn to program.
Highly recommended is Bjarne Stroustrup's The C++ Language to serve as your
reference, and also The C++ FAQ which can be found here:
www.parashift.com/c++-faq-lite/
一些常见面试题的答案与总结 -
http://www.ihas1337code.com

ago
s*******x
发帖数: 427
24
来自主题: JobHunting版 - 借本版售C++相关书籍
高教出版社,c++程序设计语言,Bjame Stroustrup, 特别版,影印版
system analysis and design,fifth edition, Kendall&Kendall
Visual C++ 6.0 网络编程技术, 邮电出版社,雷斌等
MFC深入浅出,从MFC设计到MFC编程, 华中理工大学出版社
Visual C++ 网络高级编程,邮电出版社
精通Visual C++ 6.0 电子工业出版社
站内联系
s**x
发帖数: 7506
25
来自主题: JobHunting版 - 好心人帮忙推荐一本C++入门书
<> third edition, bjarne stroustrup.
he is the father of C++.
w**z
发帖数: 8232
26
I am not a C++ guy, just saw this somewhere. Hopefully, it's helpful to
someone.
"
The "The C++ Programming Language" book by Bjarne Stroustrup, creator of the
C++ programming language contains many questions and exercises. Now someone
(Brett?) has attempted to answer all 384 of them and has published them on
Github.
That's quite a bit of work, so a big thank you to him for producing and
publishing them. He doesn't claim that they are all perfect. It's a work in
progress. If you can improve on a... 阅读全帖
l***i
发帖数: 1309
27
来自主题: JobHunting版 - 被鄙视了, c++基础知识
constructor of a global object will be called before main()
class Object {
public:
Object();
};
Object::Object() {
cout << "my message\n";
}
// define a global object somewhere in .cc or .cxx or .cpp
Object obj;
int main()
{
}
This seems to be an exercise from Stroustrup's book
l***i
发帖数: 1309
28
来自主题: JobHunting版 - 被鄙视了, c++基础知识
constructor of a global object will be called before main()
class Object {
public:
Object();
};
Object::Object() {
cout << "my message\n";
}
// define a global object somewhere in .cc or .cxx or .cpp
Object obj;
int main()
{
}
This seems to be an exercise from Stroustrup's book
s*f
发帖数: 807
29
来自主题: JobHunting版 - 马工就别靠内推找工作了
给你讲个经典的非内推故事吧。一家非常著名的基金,一天来了个老兄,号称对C++很
熟,上来个老中问了他半天,觉得还是不够满意,人走了以后还说忘了问他个什么问题
。看不对眼没办法,杯具兄最后只好到南方一个什么学校去教书。
杯具兄叫Bjarne Stroustrup。
a***n
发帖数: 3633
30
来自主题: JobHunting版 - 马工就别靠内推找工作了
啊!?这事有可能是真的,Stroustrup在书里前言就说,见过
很多人自称C++专家,其实什么都不懂。看样子老中面试官给人印象很差啊?
r*******n
发帖数: 3020
31
来自主题: JobHunting版 - 电面被羞辱了,求安慰~~~
知道不知道Bjarne Stroustrup的生日类似这种的问题,能测试什么反应能力?
如果你知道到可以说明你是c++ fan。
H**r
发帖数: 10015
32
Caltech不是ivy,ivy里面挫的比Duke,Rice没啥太大优势。
从research来说没什么必要过于崇拜ivy,UWashington这种计算机很强大了,比很多
ivy都强
ivy主要是圈子,有很多达官贵人的娃在里面混。
说真的,混个硕士上课着急找工作的人,哪里读内容都差不多,TAMU还有Stroustrup呢
,有几个TAMU的学生得到真传了,莫非TAMU CS出来的人C++普遍牛鼻?
C******8
发帖数: 501
33
来自主题: JobHunting版 - G家老年和F家E5,package有多少?
跑摩根去了 http://www.stroustrup.com/
w****a
发帖数: 710
h****e
发帖数: 2125
x******r
发帖数: 3489
k***a
发帖数: 1199
n*******s
发帖数: 17267
38
秀哉, 秀策, 丈和, 黄龙士,范西屏,吴清源
n*******s
发帖数: 17267
39
这个不是冯诺依曼就得是图灵吧?
a******n
发帖数: 5925
40
lamport 在弯曲微软关门后去哪里?
肯定是不缺大大的offer
x*******1
发帖数: 28835
t**r
发帖数: 3428
42
没必要。码农不崇拜数学家
n****e
发帖数: 2401
43
有一个在我办公室隔壁。我心情好的时候可能会跟他说耗死勾引。
t**r
发帖数: 3428
w********s
发帖数: 214
45
好吧,我的偶像是比尔盖茨
m******e
发帖数: 201
x*******5
发帖数: 152
47
来自主题: JobHunting版 - 给王垠同学的一点看法
王同学最新大作摘要:“你觉得世界上有几个人能够在B521上得A+呢?谦虚是一种美德
,不要随便评判别人,然而当看到这么多“大牛”都那么不谦虚,耀武扬威的,很多人
用他们作为评判其他人的依据,所以我只好冒着评判他们的风险,告诉你一些事实。其
实Donald Knuth, Dennis Ritchie, Bjarne Stroustrup, Guido van Rossum, Brendan
Eich, Linus Torvalds, Rob Pike, ... 这些很多人仰慕的大牛,如果上B521肯定是
连A都拿不到的。有些甚至不能及格,因为有些人根本不知道他们在干什么,设计出一
堆复杂的垃圾,然后仗着自己的威望和强权迫使你去“学习”。其实我对计算机的理解
跟这些大牛们,早就不在一个数量级上了。我心里有数他们该得什么分数,你们自己猜
猜吧。
“告诉你一些事实”,这TMD是事实嘛?是臆想。“肯定连A都拿不到”,来我们问问这
门课的instructor他是不是这么看的?“仗着自己的威望和强权强迫你去学习”, 谁
TMD逼着你去学啦?他们的威望是自己earn来的,是对全人类做出了贡献,你算个什... 阅读全帖

发帖数: 1
48
dynamic binding那一部分讲的比c++ primer透彻,我个人是这样认为的
BS去morganstanley发财了,人赢啊
https://www.morganstanley.com/profiles/bjarne-stroustrup-managing-director-
technology
s*****V
发帖数: 21731
49
来自主题: JobHunting版 - 刷题是程序员和工程师的分水岭
格局小了,上等码农,怎么也是得能开疆扩土,Bjarne Stroustrup, JEFF DEAN这样的把

30

发帖数: 1
50
来自主题: JobHunting版 - 学习C++11
Stroustrup 的也行
1 2 3 4 下页 末页 (共4页)