Tagged Questions
The ambiguity tag has no wiki summary.
20
votes
3answers
368 views
Why is it ambiguous to call overloarded ambig(long) and ambig(unsigned long) with an integer literal?
When compiling
void ambig( signed long) { }
void ambig(unsigned long) { }
int main(void) { ambig(-1); return 0; }
I get
error C2668: 'ambig' : ambiguous call to overloaded function
could be ...
18
votes
7answers
431 views
C# interface method ambiguity
Consider the following example:
interface IBase1
{
int Percentage { get; set; }
}
interface IBase2
{
int Percentage { get; set; }
}
interface IAllYourBase : IBase1, IBase2
{
}
class ...
18
votes
3answers
577 views
Isn't the template argument (the signature) of std::function part of its type?
Given the following code, what is the reason behind the ambiguity? Can I circumvent it or will I have to keep the (annoying) explicit casts?
#include <functional>
using namespace std;
int ...
15
votes
3answers
3k views
Git: warning: refname 'xxx' is ambiguous
I am using git as a frontend to Subversion (via git svn).
So, for every svn trunk/branch I have remote branch in git named "remotes/xxx". For example "remotes/trunk", "remotes/coolfeature".
Now I ...
10
votes
1answer
158 views
template disambiguator
I'm trying to find any information about template keyword used as disambiguator, but there is nothing about that. Probably I'm searching wrong keywords, but there is nothing like .template or ...
8
votes
1answer
267 views
Is it possible to generically implement the amb operator in D?
Is it possible to generically implement the amb operator in D?
http://www.haskell.org/haskellwiki/Amb
http://www.randomhacks.net/articles/2005/10/11/amb-operator
The sort of thing I'm thinking of ...
7
votes
2answers
144 views
How to get rid of this ambiguity?
I am pretty sure this has been asked before, however I was unable to find the right answer:
I tried to eliminate the ambiguity in the following exemplary code snippet:
{-# LANGUAGE ...
7
votes
5answers
142 views
Why do these two constructors together not produce an ambiguity error?
Consider the following:
class A
{
private:
A() {}
public:
A(int x = 0) {}
};
int main()
{
A a(1);
return 0;
}
I have two constructors, one is a default and the other one is ...
7
votes
1answer
136 views
why does ptr_fun find this ambiguous even when template parameters are given?
So, here is some basic code which illustrates my question:
#include <functional>
int func(int x) {
return x;
}
int func(int x, int y) {
return x + y;
}
int main() {
...
7
votes
4answers
195 views
How can there be ambiguity between a property getter and a method with one argument?
I can't believe I've never come across this before, but why am I getting a compiler error for this code?
public class Main
{
public Main()
{
var ambiguous = new FooBar(1);
var ...
7
votes
2answers
220 views
What is the easiest way of telling whether a BNF grammar is ambiguous or not?
Namely, is there a tool out there that will automatically show the full language for a given grammar, including highlighting ambiguities (if any)?
7
votes
3answers
309 views
what is the expected behavior?
Below is a purely academically invented class hierarchy.
struct X{
void f1();
void f2();
void f3();
};
struct Y : private X{
void f4();
};
struct Z : X{
};
struct D ...
6
votes
2answers
105 views
Why does C++ see this as ambiguous function reference
Why might my compiler see the following GetLength function pointer as ambiguous
pseudo-code:
size_t GetLength(char*);
size_t GetLength(wchar_t*);
struct ITEM { };
double GetLength(ITEM*);
CString ...
6
votes
2answers
222 views
Context-sensitivity vs Ambiguity
I'm confused about how context-sensitivity and ambiguity influence each other.
What i think is correct is:
Ambiguity:
An ambiguous grammar leads to the construction of more than one parse-tree ...
6
votes
4answers
368 views
Anonymous Namespace Ambiguity
Consider the following snippet:
void Foo() // 1
{
}
namespace
{
void Foo() // 2
{
}
}
int main()
{
Foo(); // Ambiguous.
::Foo(); // Calls the Foo in the global namespace (Foo #1).
// ...
6
votes
6answers
608 views
Java do while, while
what behaviour can I expect when I run this code:
do while(testA) {
// do stuff
} while(testB);
Will it behave like:
do {
while(testA) {
// do stuff
}
} while(testB);
...
5
votes
6answers
352 views
The variable 'MyException' is declared but never used (C#)
I need to clear this warning :
try
{
doSomething()
}
catch (AmbiguousMatchException MyException)
{
doSomethingElse()
}
The complier is telling me : The variable 'MyException' is ...
5
votes
2answers
213 views
Why Oracle 10g doesn't complain about column ambiguity?
I'm using Oracle 10g (XE 10.2.0.1.0), and find a behavior that I don't understand:
select *
from employees manager
join employees worker on MANAGER.EMPLOYEE_ID = WORKER.MANAGER_ID
join ...
5
votes
1answer
86 views
Ambiguous Struct Constructors in D
I'm having some trouble understanding how to deal with ambiguity of constructors in D.
struct mydta {
int a = 2;
int b = 3;
this(int c) {
a = c / 2;
b = c * 2;
}
...
5
votes
8answers
144 views
Ambiguity in number comparisons (in C)?
I'm not too familiar with programming in C (I've only done a few small projects in the language), however, my professor said something about it's behavior today that left me a bit confused.
What he ...
5
votes
8answers
333 views
Why can't .Net / C# understand interface inheritance with properties of the same name?
Consider the following class and interfaces:
public interface A { string Property { get; set; } }
public interface B { string Property { get; set; } }
public interface C : A, B { }
...
5
votes
3answers
243 views
Ambiguous partial template specialization
I've got a trait class which I need to specialize (and partial-specialize) many times.
Some partial specializations overlap:
template< typename T > struct C { };
template< typename T1, ...
5
votes
4answers
1k views
Ambiguous XML schema
I'm trying to produce a pretty simple XML schema for an XML similar to the following:
<messages>
<item>
<important_tag></important_tag>
</item>
<item>
...
4
votes
2answers
100 views
haskell — odd ambiguous type variable error message for code in “where” statement with TypeFamilies extension
Does anyone know why this code fails?
{-# LANGUAGE NoMonomorphismRestriction,
TypeFamilies #-}
module Test where
asExprTyp :: Expr γ =>
γ α
-> α
-> γ α
asExprTyp x ...
4
votes
3answers
180 views
Overriding Qualified Virtual Methods
I have C++ class with multiple parents; each parent defines a function with a common name but a different purpose:
class BaseA
{
virtual void myFunc(); // does some task
};
class BaseB
{
...
4
votes
2answers
469 views
define both operator void* and operator bool
I tried creating a class with one operator bool and one operator void*, but the compiler says they are ambigous. Is there some way I can explain to the compiler what operator to use or can I not have ...
4
votes
1answer
194 views
spotting an Ambiguous BNF
I have an assignment to correct an ambiguous BNF, but I am completely lost. I know this not a true programming question, and I will gladly delete it if it is not an appropriate question for these ...
4
votes
2answers
207 views
Equivalent implicit operators: why are they legal?
Update!
See my dissection of a portion of the C# spec below; I think I must be missing something, because to me it looks like the behavior I'm describing in this question actually violates the spec.
...
4
votes
1answer
367 views
Can an Android View's id be safely shared across multiple Activities?
Say I have two Activities in an Android application, EditPerson and EditEmployee.
It would seem natural to have the EditPerson Activity be a base class for the EditEmployee Activity and define ...
4
votes
2answers
240 views
Does C# 4.0 and a combination of optional parameters and overloads give you a warning about ambiguity?
I've started reading Jon Skeet's early access version of his book, which contains sections on C# 4.0, and one thing struck me. Unfortunately I don't have Visual Studio 2010 available so I thought I'd ...
4
votes
4answers
6k views
Django model with 2 foreign keys from the same table
I wanted a Django model with 2 foreign keys from the same table. It's an event table which has 2 columns for employees: the 'actor' and the 'receiver'. But I get this error:
Error: One or more ...
4
votes
5answers
754 views
How to handle a class name conflict when porting old code?
I'm trying to port an old library (that doesn't use namespaces as far as I can tell) to modern compilers. One of my targets can't tell the difference between System::TObject and ::TObject (without a ...
3
votes
3answers
267 views
Differentiate between ambiguous member request error and member does not exist error in SFINAE context?
Edit: Posted an answer of my own, kept the original accepted answer... got me thinking about aliases.
Edit: My question is directed at the possibility of differentiating ambiguity vs existence of a ...
3
votes
0answers
123 views
Dijkstra's example of an ambiguous program [closed]
Salutations. Dijkstra wrote that even a few lines of seemingly simple code could be hopelessly ambiguous. In at least one work, which I can't find now to save my life, he gave a little example ...
3
votes
4answers
276 views
c++ overload constructor with int and char*
I try to overload constructor with int and char *. Then there is ambiguity in call with 0. Is there any workaround/solution for this?
CBigInt (unsigned int);
CBigInt (const char *);
The problem is ...
3
votes
2answers
152 views
Using Markov models to convert all-caps to mixed-case and related problems
I've been thinking about using Markov techniques to restore missing information to natural language text.
Restore all-caps text to mixed-case.
Restore accents / diacritics to languages which should ...
3
votes
2answers
147 views
Disambiguating calls to functions taking std::functions
The code below doesn't compile on gcc 4.5 because the call to foo is ambiguous. What is the correct way to disambiguate it?
#include <iostream>
#include <functional>
using namespace ...
3
votes
1answer
122 views
Ambiguity Resolution
void S(){}
struct S{};
int main(){
S();
}
In the code above, the expression 'S()' in main is treated as a function call expression rather than an attempt to create a temporary of type 'S'.
...
3
votes
5answers
216 views
Pitfalls of number values in Python, “How deep?”
I'm a fairly green programmer, and I'm learning Python right now. I'm up to chapter 17 in "Learn to Think Like a Computer Scientist" (Classes and Methods), and I just wrote my first doctest that ...
3
votes
3answers
484 views
Object construction/Forward function declaration ambiguity
Observation: the codes pasted below were tested only with GCC 4.4.1, and I'm only interested in them working with GCC.
Hello,
It wasn't for just a few times that I stumbled into an object ...
3
votes
4answers
286 views
How to make an ambiguous call distinct in C++?
void outputString(const string &ss) {
cout << "outputString(const string& ) " + ss << endl;
}
void outputString(const string ss) {
cout << "outputString(const string ...
3
votes
8answers
402 views
Ambiguity of function overloading - Integers vs. Doubles
Suppose I wish to have 2 functions, one that generates a random integer within a given range, and one that generates a random double within a given range.
int GetRandomNumber( int min, int max );
...
3
votes
3answers
8k views
C# The call is ambiguous between the following methods or properties: 'System.Math.Round(double, int)' and 'System.Math.Round(decimal, int)
My code won't compile due to the error below:
The call is ambiguous between the following methods or properties: 'System.Math.Round(double, int)' and 'System.Math.Round(decimal, int)
My code is
...
3
votes
10answers
479 views
How do you resolve ambiguities in specification?
I need some advice on how to resolve ambiguities within application specifications.
As one simple example,
When a user fails to authenticate after a number of times, send a notification to IT.
...
3
votes
3answers
926 views
C++ Operator Ambiguity
Forgive me, for I am fairly new to C++, but I am having some trouble regarding operator ambiguity. I think it is compiler-specific, for the code compiled on my desktop. However, it fails to compile on ...
2
votes
3answers
143 views
why does C++ forbid the declaration of a parameter with no type?
I would like to have the following method as a generic method for any array,
int arrayLength(`anyType` array[])
{
return sizeof(array) / sizeof(array[0]);
}
However it appears C++ doesn't ...
2
votes
3answers
103 views
Singleton in CPP
Below is the code for a singleton class
class single{
private:
int i;
single(int x): i(x){
}
public:
static single& getInstance(){
static single s(10);
return s;
...
2
votes
2answers
139 views
Scala: ambiguous reference to overloaded definition - best disambiguation?
I have a follow-on question to the problem that the presence of overloaded method definitions with and without parameters leads to a compilation error, which is already discussed here: Why is this ...
2
votes
1answer
85 views
Why is .NET telling me my function is ambiguous?
I am working on a website in .NET 4, and it is giving me the following error:
'Trim' is ambiguous, imported from the namespaces or types 'MyLib.WEB.TextboxEx, Microsoft.VisualBasic.Strings'.
...
2
votes
3answers
144 views
Distinguishing Pass-by-Reference and Pass-by-Value
How are pass-by-reference functions typically distinguished from pass-by-value functions? For example:
template <typename T>
void sort(std::vector<T>& source); // Sorts source.
// ...