|
Is C# a high level language? I see it as more like medium level, but I am still unsure about this. Would you consider it as high level as some of the popular scripting languages?
Or does it accommodate more than one level?
Started by Joan Venge on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
:)
Define a high level language? When C was created it was considered....
You are the only one who recognizes 'medium-level language' as a term .
Yes, it is high-level.
Yes C# is considered a high level language.
|
|
What are the major topics a good high-level architecture document should include?
Started by Dan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The ReadySET project at Tigris has templates for a number of major software engineering documents... .
You might want to look at IEEE 1471 : Recommended Practice for Architecture Description of Software-Intensive Systems for one way of writing such documents .
|
|
I was wondering if there's some special way to compile high-level code (preferably from c/c++ or java) to get the corresponding assembly code.
Answer Snippets (Read the full thread at stackoverflow):
Gcc can dump an assembly listing using -S switch - it will... .
Assuming you are using gcc, http://www.delorie.com/djgpp/v2faq/faq8%5F20.html tells you to gcc -O2 -S -c foo.c
look at the manual/doco for your compiler - i m sure there is an option to do it .
|
Ask your Facebook Friends
|
Are there any high level explanations on how to go about designing a game for the iPhone?
How about open source examples for something like pacman, etc?
Started by Blankman on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Cocos2d is a good high level framework if you aren't looking to use OpenGL ES directly.
|
|
Even if you are using Agile, you would need a high level architecture before you can start implementing the project.
By high level architecture, I mean dividing project into small parts, infrastructure stuff, distributed/web-based/thick client etc...
...
Started by StackUnderflow on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
On general architecture, you have for example:
Fowler: Patterns of Enterprise Application Architecture Hohpe: Enterprise Integration Patterns The Zachman framework The Open Group Architecture Framework , TOGAF And you have platform-specific books, for... .
|
|
Related to:
Testing firmware starting a microcontroller simulator/emulator Interpreting assembly code If you are writing code for a microcontroller is there a real difference if you write in assembly or C or some other high level language? If you wrote...
Started by cbrulak on
, 16 posts
by 16 people.
Answer Snippets (Read the full thread at stackoverflow):
A high-....
Go for c !
I've worked.
But otherwise I'd stay away from assembly and stick with a high-level language.
Provided that a quality().
In a high level language without compromising execution speed or code size.
|
|
Do you know where I can find a high level explanation of Lucene Similarity Class algorithm. I will like to understand it without having to decipher all the math and terms involved with searching and indexing.
Started by Geo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The book Lucene in Action breaks down the Lucene formula in more detail; it doesn't mirror the current... .
The Wikipedia article is brief, but covers the basics.
Lucene's built-in Similarity is a fairly standard "Inverse Document Frequency" scoring algorithm .
|
|
I'd like to document what high-level (i.e. C++ not inline assembler ) functions or macros are available for Compare And Swap (CAS) atomic primitives...
E.g., WIN32 on x86 has a family of functions _InterlockedCompareExchange in the <_intrin.h> header...
Started by ceretullis on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
MacOS ....
<sys/atomic.h> ).
On Solaris there is "atomic.h" (i.e.
I'll let others list the various platform-specific APIs, but for future reference in C++09 you'll get the
atomic_compare_exchange()
operation in the new "Atomic operations library" .
|
|
I am using TransactionScope s at a high level to wrap some high level code that makes a number of connections to the database.
One of the functions I call is a generic read that is used for read only functions where a read uncommitted isolation level ...
Started by tpower on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Is that what you mean?
using (var txn = new TransactionScope( TransactionScopeOption.Required, new TransactionOptions { IsolationLevel = IsolationLevel.ReadUncommitted } )) { // Your LINQ... .
You can set the isolation level on the TransactionScope itself .
|
|
I am programming in Flash for a long-time. It is interesting that most of the things, including open source libraries, are very high-level in the Flash world. It is great because we can build things up quickly. But Flash is too slow (I want to do CV stuff...
Started by Andy Li on
, 5 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I suggest retrying with it for a while, and it ... .
There are many high level, C++ based engines (many with java and python and other language wrappers in Flash, but Processing is a high level enviroment very easy to work with.
|