由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 以前是java 程序员,要面试.net 程序员
相关主题
哎。又有公司从.NET转Node了问一个WPF的问题
大家难道全是半路出家?typescript要搞什么?
大牛们讨论一下异步编程吧貌似node.js比vert.x跟流行
同步编程真郁闷狗狗抛弃Java转投swift?
看了一下C#的async await要开始学PHP了,一头雾水啊
看看大牛们为什么都远离.net还在讨论Python 2.7 vs Python 3.x的看这个
scala的基于future并行async程序怎么写据说现在流行Isomorphic JavaScript
求助有什么好办法能在后台处理耗时的工作,完成之后发JavaScript 比python优雅很多
相关话题的讨论汇总
话题: async话题: net话题: java话题: await话题: 程序员
进入Programming版参与讨论
1 (共1页)
h*****g
发帖数: 944
1
有什么比较好的速成网站?
总结不同点的网站。
谢谢
m*******l
发帖数: 12782
2
板凳

【在 h*****g 的大作中提到】
: 有什么比较好的速成网站?
: 总结不同点的网站。
: 谢谢

g*****g
发帖数: 34805
3
Java的工作比.net的多几倍,何必去钻牛角尖。

【在 h*****g 的大作中提到】
: 有什么比较好的速成网站?
: 总结不同点的网站。
: 谢谢

c*********e
发帖数: 16335
4
.net现在用mvc 4.
你即使是java 专家,搞.net还是要从0开始的。2个完全不同的语言,不同的写code的
方法。

【在 h*****g 的大作中提到】
: 有什么比较好的速成网站?
: 总结不同点的网站。
: 谢谢

N********n
发帖数: 8363
5

找点.Net ASYNC PATTERN看看。JAVA转过来的通常对ASYNC概念很模糊。

【在 h*****g 的大作中提到】
: 有什么比较好的速成网站?
: 总结不同点的网站。
: 谢谢

c*********e
发帖数: 16335
6
你是说TAP吗?

【在 N********n 的大作中提到】
:
: 找点.Net ASYNC PATTERN看看。JAVA转过来的通常对ASYNC概念很模糊。

N********n
发帖数: 8363
7

Java has Spring framework based on MVC as well. The two are similar.

【在 c*********e 的大作中提到】
: .net现在用mvc 4.
: 你即使是java 专家,搞.net还是要从0开始的。2个完全不同的语言,不同的写code的
: 方法。

c*********e
发帖数: 16335
8
c#的mvc 4,用的是code first和.cshtml来产生动态网页,和spring的目的不同。

【在 N********n 的大作中提到】
:
: Java has Spring framework based on MVC as well. The two are similar.

N********n
发帖数: 8363
9

Yes. .Net enforces async differently so those come from Java will
need to adjust a bit to get used to it.

【在 c*********e 的大作中提到】
: 你是说TAP吗?
c*********e
发帖数: 16335
10
俺从来没用过task,这一般用来干啥的?

【在 N********n 的大作中提到】
:
: Yes. .Net enforces async differently so those come from Java will
: need to adjust a bit to get used to it.

相关主题
看看大牛们为什么都远离.net问一个WPF的问题
scala的基于future并行async程序怎么写typescript要搞什么?
求助有什么好办法能在后台处理耗时的工作,完成之后发貌似node.js比vert.x跟流行
进入Programming版参与讨论
N********n
发帖数: 8363
11

It's used to improve responsiveness. Java provides async support as
well, but .Net enforces it more vigorously & elegantly.

【在 c*********e 的大作中提到】
: 俺从来没用过task,这一般用来干啥的?
k**********g
发帖数: 989
12
http://msdn.microsoft.com/en-us/library/vstudio/hh191443.aspx
See the diagram under "What Happens in an Async Method" section.
Async and Await causes the compiler to generate "scaffolding code" which
effectively turned a method into a class that implements a state machine. (
The state machine is similar to the C# "yield" keyword. What's new in async/
await is the automatic posting of the continuation to the task-queue or
message-loop.) This blog lists one possible way such scaffolding code is
generated. http://msdn.microsoft.com/en-us/magazine/hh456402.aspx
It is difficult to get a full understanding without functional programming
and compiler knowledge. Without those, one needs to know a lot of "pitfalls"
to avoid introducing bugs when using async/await.
c****e
发帖数: 1453
13
无所谓把,这两个差别不大。.net什么方向?
W********n
发帖数: 254
14
.net方向就是xamarin. get away from MS and embrace the language.
l*****v
发帖数: 498
15
native才是王道,xamarin可以用来过渡,越往后越觉得不如native,有种隔着靴子挠
痒的感觉

【在 W********n 的大作中提到】
: .net方向就是xamarin. get away from MS and embrace the language.
1 (共1页)
进入Programming版参与讨论
相关主题
JavaScript 比python优雅很多看了一下C#的async await
Typescript是不是实际上反 functional programming 的?看看大牛们为什么都远离.net
哈哈, 不喜欢typescript 是不是都是新手?scala的基于future并行async程序怎么写
请推荐一下C#进阶书籍?求助有什么好办法能在后台处理耗时的工作,完成之后发
哎。又有公司从.NET转Node了问一个WPF的问题
大家难道全是半路出家?typescript要搞什么?
大牛们讨论一下异步编程吧貌似node.js比vert.x跟流行
同步编程真郁闷狗狗抛弃Java转投swift?
相关话题的讨论汇总
话题: async话题: net话题: java话题: await话题: 程序员