0
votes
2answers
21 views
C++/CLI: Native Reference vs Tracking Reference
What is the difference between the following two functions?
ref class SomeClass;
void swap(SomeClass^& a, SomeClass^& b){
SomeClass^ c = a;
a = b;
b = c;
}
void …
8
votes
17answers
703 views
How is C# inspired by C++ more than by Java?
When looking at the history of C#, I found out that C# was seen as an update to C and/or C++. This came a bit as a surprise to me, as on the surface, I see much more common ideas between C# and Java …
0
votes
2answers
75 views
What is the name of the language used to define the following syntax?
[ FROM {<table_source>} [,...n] ]
<join_type> ::=
[ INNER | { { LEFT | RIGHT | FULL } [OUTER] } ]
[ <join_hint> ]
JOIN
1
vote
1answer
14 views
Getting Regional setting options from code
I am working on a VB6 application. I need to get the regional settings options like
Location information
Standards and formats
Default input language
Language for non-unicode language
Is …
-3
votes
12answers
167 views
Java abstract static Workaround
I understand that neither a abstract class nor an interface can contain a method that is both abstract and static because of ambiguity problems, but is there a workaround?
I want to have either an …
2
votes
5answers
180 views
[C++] Can software be developed in a different “human language” in C/C++ ?
Hi,
I am developing a test software where the user can enter a string where I must validate it as C++ variable syntax. Then I started wondering if people can develop in japanese or other idioms.
…
79
votes
119answers
10k views
Computer Language puns and jokes
I'm looking for some funny jokes and puns that occur in computer languages. I'll post an oldie to kick things off... What are some others?
update: Especially looking for code-related jokes... the …
4
votes
6answers
142 views
C# protected members accessed via base class variable
Hello. It may seems rather newbie question, but can you explain why method Der.B() cannot access protected Foo via Base class variable? This looks weird to me:
public class Base
{
protected int …
1
vote
6answers
147 views
what is a good programming language for music software?
i want to write a music software that can play music, can detect pitch of the sound taken from the computer's microphone(with an algorithm that uses sound filters to filter out frequencies), and …
2
votes
1answer
72 views
Which Python language rule allows the descriptor to be found first?
I bumped into the following last night and I'm still at a loss as to explain it:
class Foo(object):
@property
def dave(self):
vars(self)['dave'] = 1
return 2
f = Foo()
print …
35
votes
118answers
9k views
Factorial Algorithms in different languages
I want to see all the different ways you can come up with, for a factorial subroutine, or program. The hope is that anyone can come here and see if they might want to learn a new language.
Ideas:
…
0
votes
1answer
29 views
Appropriate operators for assignment semantics in a non-pure declarative language
I'm designing a declarative language for defining signal networks. I want to use variable bindings to represent groups of nodes in the network. It occurred to me that there are two types of …
0
votes
1answer
17 views
pic: does anyone use it for diagrams? is there a version that outputs svg? (vs. troff or TeX)
I'm in the middle of reading More Programming Pearls and read the chapter on the Pic language (see also Kernighan's paper) with some interest.
Anyone out there using it? It seems like it might be …
0
votes
1answer
23 views
text to voice software
Which programming language is suitable to create an application software like text to voice converter.
1
vote
0answers
25 views
Inspiration for easy-to-use, probably graphical, scripting language
I have to implement some scripting capabilities in our product. The scripting will typically be used for simple things such as:
IF param1 > 5 + param3 AND current time > 18.00:
SET param2 TO …
