Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 64 bit?

Is there any 64 bit Visual Studio at all? Why not?

like image 980
Sash Avatar asked Mar 25 '10 14:03

Sash


People also ask

Apa bedanya Visual Studio code dengan Visual Studio?

Visual Studio Code adalah editor sementara Visual Studio adalah IDE.

Microsoft Visual C++ itu apa?

Visual C++ Bahasa ini merupakan bahasa pemrograman tingkat tinggi (kompleks). Visual C++ merupakan bahasa pemrograman yang cukup populer. Hampir semua file DLL pada sistem operasi Windows dibuat memakai bahasa ini. Visual C++ bisa berlanjut lebih cepat pada windows karena hanya membutuhkan memori yang kecil.

Apakah Visual Studio code gratis?

Visual Studio Code (VSCode) merupakan salah satu text editor yang dikembangkan oleh Microsoft. Biasanya software Microsoft itu berbayar. Namun untuk software VSCode ini adalah gratis alias open source.

Microsoft Visual Studio untuk apa?

Microsoft Visual Studio adalah sebuah perangkat lunak lengkap (suite) yang dapat dipakai sbg melaksanakan pengembangan aplikasi, baik itu aplikasi bidang usaha, aplikasi personal, ataupun komponen aplikasinya, dalam bangun-bangun aplikasi console, aplikasi Windows, ataupun aplikasi Web. Visual Studio mencakup kompiler, ...


1 Answers

For numerous reasons, No.

Why is explained in this MSDN post.

First, from a performance perspective the pointers get larger, so data structures get larger, and the processor cache stays the same size. That basically results in a raw speed hit (your mileage may vary). So you start in a hole and you have to dig yourself out of that hole by using the extra memory above 4G to your advantage. In Visual Studio this can happen in some large solutions but I think a preferable thing to do is to just use less memory in the first place. Many of VS’s algorithms are amenable to this. Here’s an old article that discusses the performance issues at some length: https://docs.microsoft.com/archive/blogs/joshwil/should-i-choose-to-take-advantage-of-64-bit

Secondly, from a cost perspective, probably the shortest path to porting Visual Studio to 64 bit is to port most of it to managed code incrementally and then port the rest. The cost of a full port of that much native code is going to be quite high and of course all known extensions would break and we’d basically have to create a 64 bit ecosystem pretty much like you do for drivers. Ouch.

like image 116
Joey Avatar answered Oct 03 '22 02:10

Joey