Sponsored Content
Full Discussion: new operator
Top Forums Programming new operator Post 302282719 by Corona688 on Sunday 1st of February 2009 04:49:45 PM
Old 02-01-2009
Quote:
Originally Posted by Nagapandi
Hi,

Please clear the 2 questions,

2 Questions,

1) Why the new as a operator? Is there any special reason why it can't be a function like malloc?
because that was the fad when it was designed, to mix system-dependent, OS-dependent, and language-dependent things together into one glorious operator-overloadable mess. It cannot be a library function because such things don't have access to constructors and destructors, it has to be a language feature.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

And operator

I am trying to check two variables and if both are blank I want to set a flag: the_f3_pid=`rsh $target ps -ef | grep "f3.eab" | awk '{print $2}'` the_f7_pid=`rsh $target ps -ef | grep "f7.eab" | awk '{print $2}'` if ; then y=1 fi I get an error: ./script_name: test: 0403-021 ]... (4 Replies)
Discussion started by: rcarnesiii
4 Replies

2. HP-UX

Or operator with if

hi, i was trying to club to test condition with if. if -o ; then it is giving me error message, i wanted to ask how can we check two condtions with one if. (1 Reply)
Discussion started by: babom
1 Replies

3. Shell Programming and Scripting

SED * operator

1. echo "abc 123 abc" | sed 's/*/X/' yields - X 123 abc Does this mean the "*" operator matches ONLY the first and the entire token - "abc" and replaces with "X" ? 2. echo "123 abc" | sed 's/*/X/' yields - X123 abc What does this indicate about the "*" operator ?? (7 Replies)
Discussion started by: sinpeak
7 Replies

4. Shell Programming and Scripting

TEST operator help

Hi I want to group like this but syntactic is not right ... Thanks if Like this below does not work properly .. if then : else usage exit 1 fi (5 Replies)
Discussion started by: zam
5 Replies

5. Shell Programming and Scripting

op of logical operator

Why the op of the following code is like this ???? i=4 j=-1 k=0 echo $? echo $? echo $? (5 Replies)
Discussion started by: lipun4u
5 Replies

6. UNIX for Dummies Questions & Answers

su with << operator

All, THe below is my script , when i use this i am getting nothing . could any one help me to know what is the use of the << operator below su - $8 << supo echo "exportsph $2 $1 $3 $4" exportsph $2 $1 $3 $4 supo i also tried as individual command su - userid << supo , when i do... (3 Replies)
Discussion started by: arunkumar_mca
3 Replies

7. Shell Programming and Scripting

equal to operator

Hi, I have the below script executed arg="dir" if "$arg" = "dir" then echo "true" else echo "false" fi Please let me know what happens in the if command. My output is: dir: dir: No such file or directory false which is not the desired output. When i used test command... (1 Reply)
Discussion started by: anijan
1 Replies

8. Programming

C++ no match for 'operator []'

I wrote a little students management program using structs, and when I try to compile it, an error appears: luke@luke-desktop:~/Desktop/ProgII$ g++ recStudents.cc recStudents.cc: In function ‘void add(TList&, Tstudent)': recStudents.cc:114: error: no match for ‘operator' in ‘Slist'Here... (2 Replies)
Discussion started by: Luke Bonham
2 Replies

9. UNIX for Dummies Questions & Answers

+= operator

im new to bash scripting and im just using online tutorials and trial and error. i wanted to write a script to read numbers from a file and find their sum: #!/bin/bash theSum=0 for line in $(cat numbers.txt) do let "theSum = theSum + $line" echo "$line" done echo "The sum is... (3 Replies)
Discussion started by: astrolux444
3 Replies

10. Shell Programming and Scripting

sed or operator

hi, I got a requirement to change existing script like below to search additional pattern "DB select". i tried using \| opearator but it is not working :(. Below is the existing code echo $(cat ${1} |sed -n '/Error in/ { N N N /Too many/ { p ... (5 Replies)
Discussion started by: shyamxtasy
5 Replies
wsreg_add_dependent_component(3WSREG)		    Product Install Registry Library Functions		     wsreg_add_dependent_component(3WSREG)

NAME
wsreg_add_dependent_component, wsreg_remove_dependent_component, wsreg_get_dependent_components - add or remove a dependent component SYNOPSIS
cc [flag ...] file ...-lwsreg [library ...] #include <wsreg.h> int wsreg_add_dependent_component(Wsreg_component *comp, const Wsreg_component *dependentComp); int wsreg_remove_dependent_component(Wsreg_component *comp, const Wsreg_component *dependentComp); Wsreg_component **wsreg_get_dependent_components(const Wsreg_component *comp); DESCRIPTION
The wsreg_add_dependent_component() function adds the component specified by dependentComp to the list of dependent components contained in the component specified by comp. The wsreg_remove_dependent_component() function removes the component specified by dependentComp from the list of dependent components con- tained in the component specified by comp. The wsreg_get_dependent_components() function returns the list of dependent components contained in the component specified by comp. RETURN VALUES
The wsreg_add_dependent_component() function returns a non-zero value if the specified dependent component was successfully added; other- wise, 0 is returned. The wsreg_remove_dependent_component() function returns a non-zero value if the specified dependent component was successfully removed; otherwise, 0 is returned. The wsreg_get_dependent_components() function returns a null-terminated array of Wsreg_component pointers that represents the specified component's list of dependent components. If the specified component has no dependent components, NULL is returned. The resulting array must be released by the caller through a call to wsreg_free_component_array(). See wsreg_create_component(3WSREG). USAGE
The relationship between two components in which one must be installed for the other to be complete is a dependent/required relationship. The component that is required by the other component is the required component. The component that requires the other is the dependent component. The required component must be installed and registered before the dependent component can be. Uninstaller applications should check the registry before uninstalling and unregistering components so a successful uninstallation of one product will not result in another product being compromised. Read access to the product install registry is required to use these functions because these relationships are held with lightweight compo- nent references that can only be fully resolved using the registry contents. The act of registering a component having required components results in the converse dependent relationships being established automati- cally. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |MT-Level |Unsafe | +-----------------------------+-----------------------------+ SEE ALSO
wsreg_add_required_component(3WSREG), wsreg_can_access_registry(3WSREG), wsreg_create_component(3WSREG), wsreg_initialize(3WSREG), wsreg_register(3WSREG), attributes(5) SunOS 5.10 22 Sep 2000 wsreg_add_dependent_component(3WSREG)
All times are GMT -4. The time now is 02:31 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy