www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Error: cannot implicitly convert expression () of typechar[5] to char[][]

reply jicman <cabrera wrc.xerox.com> writes:
Greetings.  I am receiving these errors,

OpenJobs.d(2393): Error: cannot implicitly convert expression
("Quote") of typechar[5] to char[][]
OpenJobs.d(2393): Error: cannot implicitly convert expression
("Quotes\\") of type char[7] to char
OpenJobs.d(2394): Error: cannot implicitly convert expression
("Language") of type char[8] to char[][]
OpenJobs.d(2394): Error: cannot implicitly convert expression
("Deliverables\\") of type char[13] to char
OpenJobs.d(2395): Error: cannot implicitly convert expression
("Technical") of type char[9] to char[][]
OpenJobs.d(2395): Error: cannot implicitly convert expression
("Analysis\\") of type char[9] to char
OpenJobs.d(2396): Error: cannot implicitly convert expression
((_aaKeys)((Proj),8u)) of type char[][][] to char[][]

which is caused by these lines,


2292    char[char[]] Proj;
2293    Proj["Quote"]      = r"Quotes\";
2294    Proj["Language"]   = r"Deliverables\";
2295    Proj["Technical"]  = r"Analysis\";
2296    char[][] pKeys     = Proj.keys;

I went to the array page, and "I think" I am doing the declation ok.

Help.

jic
Feb 23 2007
next sibling parent reply Bradley Smith <digitalmars-com baysmith.com> writes:
jicman wrote:
 Greetings.  I am receiving these errors,
 
 OpenJobs.d(2393): Error: cannot implicitly convert expression
 ("Quote") of typechar[5] to char[][]
 OpenJobs.d(2393): Error: cannot implicitly convert expression
 ("Quotes\\") of type char[7] to char
 OpenJobs.d(2394): Error: cannot implicitly convert expression
 ("Language") of type char[8] to char[][]
 OpenJobs.d(2394): Error: cannot implicitly convert expression
 ("Deliverables\\") of type char[13] to char
 OpenJobs.d(2395): Error: cannot implicitly convert expression
 ("Technical") of type char[9] to char[][]
 OpenJobs.d(2395): Error: cannot implicitly convert expression
 ("Analysis\\") of type char[9] to char
 OpenJobs.d(2396): Error: cannot implicitly convert expression
 ((_aaKeys)((Proj),8u)) of type char[][][] to char[][]
 
 which is caused by these lines,
 
 
 2292    char[char[]] Proj;
 2293    Proj["Quote"]      = r"Quotes\";
 2294    Proj["Language"]   = r"Deliverables\";
 2295    Proj["Technical"]  = r"Analysis\";
 2296    char[][] pKeys     = Proj.keys;
 
 I went to the array page, and "I think" I am doing the declation ok.
 
 Help.
 
 jic
Should be char[][char[]] Proj; Proj["Quote"] = r"Quotes\"; Proj["Language"] = r"Deliverables\"; Proj["Technical"] = r"Analysis\"; char[][] pKeys = Proj.keys;
Feb 23 2007
parent reply jicman <cabrera wrc.xerox.com> writes:
== Quote from Bradley Smith (digitalmars-com baysmith.com)'s article
 jicman wrote:
 Greetings.  I am receiving these errors,

 OpenJobs.d(2393): Error: cannot implicitly convert expression
 ("Quote") of typechar[5] to char[][]
 OpenJobs.d(2393): Error: cannot implicitly convert expression
 ("Quotes\\") of type char[7] to char
 OpenJobs.d(2394): Error: cannot implicitly convert expression
 ("Language") of type char[8] to char[][]
 OpenJobs.d(2394): Error: cannot implicitly convert expression
 ("Deliverables\\") of type char[13] to char
 OpenJobs.d(2395): Error: cannot implicitly convert expression
 ("Technical") of type char[9] to char[][]
 OpenJobs.d(2395): Error: cannot implicitly convert expression
 ("Analysis\\") of type char[9] to char
 OpenJobs.d(2396): Error: cannot implicitly convert expression
 ((_aaKeys)((Proj),8u)) of type char[][][] to char[][]

 which is caused by these lines,


 2292    char[char[]] Proj;
 2293    Proj["Quote"]      = r"Quotes\";
 2294    Proj["Language"]   = r"Deliverables\";
 2295    Proj["Technical"]  = r"Analysis\";
 2296    char[][] pKeys     = Proj.keys;

 I went to the array page, and "I think" I am doing the declation
ok.
 Help.

 jic
Should be char[][char[]] Proj; Proj["Quote"] = r"Quotes\"; Proj["Language"] = r"Deliverables\"; Proj["Technical"] = r"Analysis\"; char[][] pKeys = Proj.keys;
SO-No-vah! Thanks. Perhaps Walter may want to put a small example on the Array page. :-) All there is there is the int[char[]]. I knew it was something simple, but yet, complex! Again, muchas gracias. jose
Feb 23 2007
parent reply Bill Baxter <dnewsgroup billbaxter.com> writes:
jicman wrote:
 == Quote from Bradley Smith (digitalmars-com baysmith.com)'s article
 jicman wrote:
 Greetings.  I am receiving these errors,

 OpenJobs.d(2393): Error: cannot implicitly convert expression
 ("Quote") of typechar[5] to char[][]
 OpenJobs.d(2393): Error: cannot implicitly convert expression
 ("Quotes\\") of type char[7] to char
 OpenJobs.d(2394): Error: cannot implicitly convert expression
 ("Language") of type char[8] to char[][]
 OpenJobs.d(2394): Error: cannot implicitly convert expression
 ("Deliverables\\") of type char[13] to char
 OpenJobs.d(2395): Error: cannot implicitly convert expression
 ("Technical") of type char[9] to char[][]
 OpenJobs.d(2395): Error: cannot implicitly convert expression
 ("Analysis\\") of type char[9] to char
 OpenJobs.d(2396): Error: cannot implicitly convert expression
 ((_aaKeys)((Proj),8u)) of type char[][][] to char[][]

 which is caused by these lines,


 2292    char[char[]] Proj;
 2293    Proj["Quote"]      = r"Quotes\";
 2294    Proj["Language"]   = r"Deliverables\";
 2295    Proj["Technical"]  = r"Analysis\";
 2296    char[][] pKeys     = Proj.keys;

 I went to the array page, and "I think" I am doing the declation
ok.
 Help.

 jic
Should be char[][char[]] Proj; Proj["Quote"] = r"Quotes\"; Proj["Language"] = r"Deliverables\"; Proj["Technical"] = r"Analysis\"; char[][] pKeys = Proj.keys;
SO-No-vah! Thanks. Perhaps Walter may want to put a small example on the Array page. :-) All there is there is the int[char[]]. I knew it was something simple, but yet, complex!
You can help by adding such an example to the 'comments' page attached to that page -- if there isn't one there already. (Look for the button labeled "Comments" near the top of the page). --bb
Feb 23 2007
parent Brad Roberts <braddr puremagic.com> writes:
 Thanks.  Perhaps Walter may want to put a small example on the Array
 page. :-)  All there is there is the int[char[]].  I knew it was
 something simple, but yet, complex!
You can help by adding such an example to the 'comments' page attached to that page -- if there isn't one there already. (Look for the button labeled "Comments" near the top of the page). --bb
An entry in bugzilla will probably be noticed and acted by walter on quite a bit faster. An entry in the wiki will be visible to the rest of the world faster. So.. I'd suggest doing both if you have the drive, or bugzilla if you want the docs to ever be updated. Later, Brad
Feb 23 2007
prev sibling next sibling parent Kirk McDonald <kirklin.mcdonald gmail.com> writes:
jicman wrote:
 Greetings.  I am receiving these errors,
 
 OpenJobs.d(2393): Error: cannot implicitly convert expression
 ("Quote") of typechar[5] to char[][]
 OpenJobs.d(2393): Error: cannot implicitly convert expression
 ("Quotes\\") of type char[7] to char
 OpenJobs.d(2394): Error: cannot implicitly convert expression
 ("Language") of type char[8] to char[][]
 OpenJobs.d(2394): Error: cannot implicitly convert expression
 ("Deliverables\\") of type char[13] to char
 OpenJobs.d(2395): Error: cannot implicitly convert expression
 ("Technical") of type char[9] to char[][]
 OpenJobs.d(2395): Error: cannot implicitly convert expression
 ("Analysis\\") of type char[9] to char
 OpenJobs.d(2396): Error: cannot implicitly convert expression
 ((_aaKeys)((Proj),8u)) of type char[][][] to char[][]
 
 which is caused by these lines,
 
 
 2292    char[char[]] Proj;
 2293    Proj["Quote"]      = r"Quotes\";
 2294    Proj["Language"]   = r"Deliverables\";
 2295    Proj["Technical"]  = r"Analysis\";
 2296    char[][] pKeys     = Proj.keys;
 
 I went to the array page, and "I think" I am doing the declation ok.
 
 Help.
 
 jic
Try: char[][char[]] Proj; -- Kirk McDonald http://kirkmcdonald.blogspot.com Pyd: Connecting D and Python http://pyd.dsource.org
Feb 23 2007
prev sibling next sibling parent Brian Byrne <bdbyrne wisc.edu> writes:
jicman wrote:
 Greetings.  I am receiving these errors,
 
 OpenJobs.d(2393): Error: cannot implicitly convert expression
 ("Quote") of typechar[5] to char[][]
 OpenJobs.d(2393): Error: cannot implicitly convert expression
 ("Quotes\\") of type char[7] to char
 OpenJobs.d(2394): Error: cannot implicitly convert expression
 ("Language") of type char[8] to char[][]
 OpenJobs.d(2394): Error: cannot implicitly convert expression
 ("Deliverables\\") of type char[13] to char
 OpenJobs.d(2395): Error: cannot implicitly convert expression
 ("Technical") of type char[9] to char[][]
 OpenJobs.d(2395): Error: cannot implicitly convert expression
 ("Analysis\\") of type char[9] to char
 OpenJobs.d(2396): Error: cannot implicitly convert expression
 ((_aaKeys)((Proj),8u)) of type char[][][] to char[][]
 
 which is caused by these lines,
 
 
 2292    char[char[]] Proj;
 2293    Proj["Quote"]      = r"Quotes\";
 2294    Proj["Language"]   = r"Deliverables\";
 2295    Proj["Technical"]  = r"Analysis\";
 2296    char[][] pKeys     = Proj.keys;
 
 I went to the array page, and "I think" I am doing the declation ok.
 
 Help.
 
 jic
Associative arrays are declared by (value)[(key)]. Going by this, your declaration puts value == char and key == char[]. What you want is value == char[], so try type: char[][char[]]. Brian Byrne
Feb 23 2007
prev sibling parent reply renoX <renosky free.fr> writes:
*Sigh* these kind of error wouldn't happen if we had string as a base 
type: string[string] and it looks much better.

renoX
Feb 24 2007
parent Brian Byrne <bdbyrne wisc.edu> writes:
renoX wrote:
 *Sigh* these kind of error wouldn't happen if we had string as a base 
 type: string[string] and it looks much better.
 
 renoX
alias char[] String; I started doing it a while ago for all my projects :). Brian Byrne
Feb 24 2007